-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 885 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
{
"name": "PunktJs",
"version": "0.1.0",
"description": "",
"author": "Maximilian Beck",
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"ansi": "^0.3.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"colors": "^1.1.2",
"coveralls": "^2.11.4",
"grunt": "^0.4.5",
"grunt-babel": "^6.0.0",
"grunt-contrib-watch": "^0.6.1",
"istanbul": "^0.4.1",
"jsdoc-to-markdown": "^1.3.2",
"load-grunt-tasks": "^3.3.0",
"mocha": "^2.3.4"
},
"scripts": {
"compile": "babel -d lib/ src/ --source-maps",
"prepublish": "npm run compile",
"post-install": "npm run compile",
"test": "mocha",
"test-coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/",
"docs": "jsdoc2md --example-lang js src/*.js > api.md"
}
}