-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 989 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "numerology-core",
"version": "1.2.0",
"description": "numerology core node es6 tdd",
"main": "./library/numerology.js",
"scripts": {
"test": "gulp test",
"test-auto": "gulp test-auto",
"build": "babel source --presets babel-preset-es2015 --out-dir library",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cleancodedojo/numerology-core.git"
},
"keywords": [
"node",
"es6",
"tdd"
],
"author": "Ray Joseph de Castro",
"license": "MIT",
"bugs": {
"url": "https://github.com/cleancodedojo/numerology-core/issues"
},
"homepage": "https://github.com/cleancodedojo/numerology-core#readme",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-mocha": "^3.0.1",
"mocha": "^3.1.0"
},
"babel": {
"presets": [
"es2015"
]
}
}