-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.44 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
{
"name": "@aureooms/js-polynomial",
"description": "Sparse and dense polynomials for JavaScript",
"version": "1.0.0",
"author": "Aurélien Ooms <aurelien.ooms@gmail.com>",
"ava": {
"require": [
"babel-polyfill",
"babel-register"
]
},
"babel": {
"presets": [
"latest"
],
"env": {
"development": {
"sourceMaps": "inline"
}
}
},
"bugs": {
"url": "https://github.com/make-github-pseudonymous-again/js-polynomial/issues"
},
"dependencies": {},
"devDependencies": {
"@aureooms/js-array": "^4.0.0",
"@aureooms/js-functools": "^2.0.3",
"@aureooms/js-itertools": "^3.1.1",
"@aureooms/js-number": "^3.0.0",
"ava": "^0.19.0",
"babel-cli": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-latest": "^6.22.0",
"codeclimate-test-reporter": "^0.4.1",
"coveralls": "^2.11.16",
"esdoc": "^0.5.2",
"nyc": "^11.0.0"
},
"homepage": "http://make-github-pseudonymous-again.github.io/js-polynomial",
"keywords": [
"algebra",
"javascript",
"js",
"mathematics",
"polynomial"
],
"license": "AGPL-3.0",
"main": "lib/index.js",
"repository": {
"url": "https://github.com/make-github-pseudonymous-again/js-polynomial.git",
"type": "git"
},
"scripts": {
"build": "babel src -d lib",
"cover": "nyc --reporter=lcov npm test",
"prepublish": "npm run build",
"test": "ava ./test/src --concurrency 8"
}
}