Add package.json
Showing
1 changed file
with
33 additions
and
0 deletions
package.json
0 → 100644
1 | { | ||
2 | "name": "condorcet", | ||
3 | "version": "0.1.0", | ||
4 | "description": "JavaScript implementation of Condorcet method.", | ||
5 | "author": { | ||
6 | "name": "Techniv", | ||
7 | "email": "contact@techniv.fr" | ||
8 | }, | ||
9 | "main": "./dist/condorcet.js", | ||
10 | "repository": { | ||
11 | "type": "git", | ||
12 | "url": "http://gitlab.techniv.fr/Techniv/condorcet-js" | ||
13 | }, | ||
14 | "bugs": { | ||
15 | "url": "http://gitlab.techniv.fr/Techniv/condorcet-js/issues" | ||
16 | }, | ||
17 | "devDependencies": { | ||
18 | "gulp": "*", | ||
19 | "gulp-babel": "*", | ||
20 | "gulp-replace": "*", | ||
21 | "gulp-rename": "*", | ||
22 | "del": "*", | ||
23 | "babel-preset-es2015": "*", | ||
24 | "mocha": "*" | ||
25 | }, | ||
26 | "scripts": { | ||
27 | "build": "./node_modules/.bin/gulp build", | ||
28 | "test": "./node_modules/.bin/mocha bdd tests/node/**/*Spec.js" | ||
29 | }, | ||
30 | "engines": { | ||
31 | "node": ">=6.9.*" | ||
32 | } | ||
33 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or sign in to post a comment