-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "math-parser",
"version": "0.13.0",
"description": "Parse math strings to an AST suitable for symbolic manipulation.",
"main": "dist/math-parser.js",
"scripts": {
"prepublish": "webpack",
"watch": "webpack -w",
"test": "jest",
"lint": "eslint . --cache"
},
"pre-commit": [
"lint"
],
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/node_modules/babel-polyfill/dist/polyfill.js",
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinbarabash/math-parser.git"
},
"author": "Kevin Barabash <kevinb@khanacademy.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevinbarabash/math-parser/issues"
},
"homepage": "https://github.com/kevinbarabash/math-parser#readme",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"eslint": "^3.15.0",
"eslint-plugin-flowtype": "^2.30.0",
"flow-bin": "^0.38.0",
"jest": "^20.0.3",
"json-stable-stringify": "^1.0.1",
"pre-commit": "^1.2.2",
"webpack": "^2.2.1"
},
"dependencies": {
"math-nodes": "^0.1.7",
"math-traverse": "^0.2.2"
}
}