-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathpackage.json
42 lines (42 loc) · 1.45 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
{
"name": "regression",
"description": "Javascript least squares data fitting methods",
"contributors": [
"Tom Alexander <[email protected]>",
"Misha Wolfson <[email protected]>"
],
"version": "2.0.1",
"license": "MIT",
"main": "./dist/regression.js",
"repository": "Tom-Alexander/regression-js",
"keywords": [
"regression",
"data",
"fiting",
"modeling",
"analysis"
],
"scripts": {
"clean": "rm -rf dist && mkdir dist",
"lint": "./node_modules/.bin/eslint src/** tests/**",
"test": "npm run lint && ./node_modules/.bin/nyc --reporter=lcov ./node_modules/.bin/mocha --compilers js:babel-core/register",
"build": "npm run clean && npm run build-regression-js && npm run build-regression-min-js",
"build-regression-js": "BABEL_ENV=production ./node_modules/.bin/babel src/regression.js --out-file dist/regression.js",
"build-regression-min-js": " ./node_modules/.bin/uglifyjs dist/regression.js --output dist/regression.min.js"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "^3.2.0",
"nyc": "^11.0.3",
"uglify-js": "3"
},
"author": "Tom Alexander <[email protected]>"
}