-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 836 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 836 Bytes
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
{
"name": "arrivals",
"version": "2.1.2",
"description": "Modeling arrival processes of events in a system.",
"main": "index.js",
"scripts": {
"test": "node test/index.js",
"is_linted": "find . -name '*.js' | grep -v node_modules | grep -v coverage | xargs eslint",
"coverage": "istanbul cover test/index.js && istanbul check-coverage"
},
"keywords": [
"poisson",
"process",
"arrival"
],
"repository": {
"type": "git",
"url": "https://github.com/artilleryio/arrivals.git"
},
"author": "Hassy Veldstra <h@artillery.io>",
"license": "ISC",
"dependencies": {
"debug": "^4.0.1",
"nanotimer": "0.3.14"
},
"devDependencies": {
"eslint": "^2.9.0",
"istanbul": "^0.4.5",
"pre-commit": "^1.0.10",
"tape": "^4.0.0"
},
"pre-commit": [
"is_linted"
]
}