-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.33 KB
/
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
{
"name": "protoplast",
"version": "2.0.4",
"description": "prototypal inheritance with meta-data",
"main": "main.js",
"scripts": {
"build": "webpack",
"codecov": "codecov",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"doc": "jsdoc -c jsdoc.conf.json -R README.md -P package.json -t node_modules/docdash -u docs/tutorials",
"eslint": "eslint --format=table js/**/*.js",
"postversion": "git push && git push --tags",
"preversion": "git fetch --tags && node scripts/changelog.js https://github.com/ifrost/protoplast console",
"test": "mocha --recursive",
"debug": "mocha --watch --reporter spec --inspect test/protoplast.test.js",
"version": "npm run build && git add ."
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/ifrost/protoplast.git"
},
"author": "Piotr Jamroz <[email protected]> (https://about.me/piotr.jamroz)",
"license": "ISC",
"bugs": {
"url": "https://github.com/ifrost/protoplast/issues"
},
"homepage": "https://github.com/ifrost/protoplast#readme",
"devDependencies": {
"chai": "^4.0.2",
"codecov": "^3.0.0",
"docdash": "^0.4.0",
"eslint": "^4.12.1",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"jsdom": "^11.1.0",
"sinon": "^4.0.0",
"mocha": "^4.0.0",
"webpack": "^3.0.0"
}
}