-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
41
42
43
44
45
46
47
{
"name": "konjo",
"version": "0.1.1",
"description": "A simple 2D collision detection engine.",
"main": "lib/main.js",
"scripts": {
"clean": "rm lib/ -rf",
"build": "npm run clean && babel src -d lib",
"standard": "standard --fix -v | snazzy",
"docs": "jsdoc -c scripts/jsdoc.conf.json -R readme.md",
"release": "standard-version && git push --follow-tags origin master; npm publish",
"test": "jest",
"test:ci": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"author": "shitake <[email protected]>",
"license": "MIT",
"standard": {
"ignore": [
"lib/",
"docs/"
]
},
"repository": {
"type": "git",
"url": "git://github.com/kagamiNekoClub/konjo.git"
},
"devDependencies": {
"@pixi/jsdoc-template": "^2.4.0",
"babel-cli": "^6.26.0",
"babel-env": "^2.4.1",
"babel-jest": "^22.0.4",
"babel-polyfill": "^6.26.0",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"jest": "^22.0.4",
"jsdoc": "^3.5.5",
"regenerator-runtime": "^0.11.1",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"standard-version": "^4.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}