forked from nkofl/simjs-updated
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.99 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "simjs",
"version": "2.0.5",
"description": "SIM.JS Updated is a general-purpose Discrete Event Simulation library",
"main": "sim.js",
"files": [
"sim.js"
],
"keywords": [
"discrete",
"event",
"simulation",
"queue",
"store",
"buffer",
"container"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/btelles/simjs-updated"
},
"scripts": {
"audit": "nsp check package",
"build": "browserify -s simjs -d -e src/sim.js -t babelify --outfile sim.js",
"check": "npm audit && npm outdated --depth 0",
"coverage": "nyc --reporter=lcov --reporter=text --reporter=html npm test",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"github-release": "conventional-github-releaser -p angular",
"lint": "eslint src",
"test": "ava --require babel-core/register src/test/*-tests.js",
"validate": "npm run lint && npm test",
"prepare": "npm run build && npm run validate && npm run check",
"pp": "npm run prepare",
"major": "pmm major",
"minor": "pmm minor",
"patch": "pmm patch"
},
"author": {
"name": "Bernardo Telles",
"email": "[email protected]",
"url": "https://github.com/btelles"
},
"pre-commit": [
"validate"
],
"dependencies": {},
"devDependencies": {
"ava": "^0.14.0",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^6.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.7",
"babel-plugin-transform-function-bind": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.0.0",
"conventional-github-releaser": "^1.1.0",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^1.1.5",
"eslint": "^2.5.1",
"nsp": "^3.2.1",
"nyc": "^13.2.0",
"pmm": "^1.3.0",
"pre-commit": "^1.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}