-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
83 lines (83 loc) · 3.16 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "theorem.js",
"version": "1.2.0",
"description": "A Math library for computation in JavaScript",
"main": "dist/theorem.min.js",
"scripts": {
"run": "npm test",
"build": "npm test",
"test": "npm run gulp && npm run prettier && npm run lint && npm run eye && exit 0",
"gulp": "rig src/base.js > dist/rig.js && gulp && rm dist/rig.js",
"prettier": "prettier \"dist/**/*.js\" --write",
"lint": "./node_modules/.bin/eslint dist/theorem.js --fix",
"eye": "./node_modules/.bin/eye ./__test__/test.js -ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arguiot/TheoremJS.git"
},
"keywords": [
"theoremjs",
"math",
"computation",
"algebra",
"library"
],
"author": "Arthur Guiot",
"license": "MIT",
"bugs": {
"url": "https://github.com/arguiot/TheoremJS/issues"
},
"homepage": "https://github.com/arguiot/TheoremJS#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-helper-flip-expressions": "^0.4.3",
"babel-loader": "^7.1.5",
"babel-minify": "^0.5.0",
"babel-plugin-minify-builtins": "^0.5.0",
"babel-plugin-minify-constant-folding": "^0.5.0",
"babel-plugin-minify-dead-code-elimination": "^0.4.3",
"babel-plugin-minify-flip-comparisons": "^0.4.3",
"babel-plugin-minify-guarded-expressions": "^0.4.3",
"babel-plugin-minify-infinity": "^0.4.3",
"babel-plugin-minify-mangle-names": "^0.4.3",
"babel-plugin-minify-replace": "^0.4.3",
"babel-plugin-minify-simplify": "^0.4.3",
"babel-plugin-minify-type-constructors": "^0.4.3",
"babel-plugin-transform-inline-consecutive-adds": "^0.4.3",
"babel-plugin-transform-member-expression-literals": "^6.9.4",
"babel-plugin-transform-merge-sibling-variables": "^6.9.4",
"babel-plugin-transform-minify-booleans": "^6.9.4",
"babel-plugin-transform-property-literals": "^6.9.4",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-plugin-transform-remove-debugger": "^6.9.4",
"babel-plugin-transform-remove-undefined": "^0.4.3",
"babel-plugin-transform-simplify-comparison-operators": "^6.9.4",
"babel-plugin-transform-undefined-to-void": "^6.9.4",
"babel-polyfill": "^6.26.0",
"babel-preset-babili": "^0.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babili": "^0.1.4",
"buffer-shims": "^1.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"eye.js": "1.2.1",
"gulp": "^4.0.2",
"gulp-babel": "^7.0.1",
"gulp-babili": "^0.1.4",
"gulp-concat": "^2.6.1",
"gulp-inject-version": "^1.0.1",
"gulp-rename": "^1.4.0",
"gulp-rigger": "^0.5.8",
"gulp-uglify": "^3.0.2",
"prettier": "1.16.4",
"rigger": "^1.0.1"
},
"dependencies": {
"bignumber.js": "^7.2.1"
}
}