-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.07 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": "math-rules",
"version": "0.2.14",
"main": "dist/math-rules.js",
"repository": "https://github.com/semantic-math/math-rules",
"author": "Kevin Barabash <[email protected]>",
"license": "MIT",
"dependencies": {
"math-evaluator": "^0.0.9",
"math-nodes": "^0.1.6",
"math-parser": "^0.10.4",
"math-traverse": "^0.2.2"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.15.0",
"jest": "^20.0.4",
"pre-commit": "^1.2.2",
"webpack": "^2.6.1"
},
"pre-commit": [
"lint"
],
"scripts": {
"prepublish": "webpack",
"watch": "webpack -w",
"test": "jest",
"lint": "eslint . --cache --ignore-path .gitignore"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/node_modules/babel-polyfill/dist/polyfill.js",
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}