forked from simple-statistics/simple-statistics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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
{
"name": "simple-statistics",
"version": "1.0.0",
"description": "Simple Statistics",
"author": "Tom MacWright <tom@macwright.org> (http://macwright.org/)",
"repository": {
"type": "git",
"url": "git://github.com/simple-statistics/simple-statistics.git"
},
"dependencies": {},
"devDependencies": {
"browserify": "^11.0.1",
"coveralls": "^2.11.1",
"eslint": "^1.1.0",
"faucet": "0.0.1",
"istanbul": "^0.3.0",
"random-js": "^1.0.4",
"science": "^1.9.2",
"tape": "^4.0.0",
"uglify-js": "^2.4.23"
},
"scripts": {
"test": "eslint --no-eslintrc -c .eslintrc index.js src/*.js test/*.js && tape test/*.js | faucet",
"cov": "istanbul cover ./node_modules/.bin/tape test/*.js && coveralls < ./coverage/lcov.info || true",
"build": "browserify -s ss index.js | tee dist/simple_statistics.js | uglifyjs -c -m > dist/simple_statistics.min.js",
"prepublish": "npm test && npm run build"
},
"main": "index.js",
"engines": {
"node": "*"
},
"license": "ISC"
}