-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "math-nodes",
"version": "0.1.14",
"description": "Creation and identification utility functions for nodes in math-ast ASTs",
"main": "dist/math-nodes.js",
"scripts": {
"lint": "eslint lib",
"prepublish": "webpack",
"test": "jest"
},
"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/semantic-math/math-nodes.git"
},
"author": "Kevin Barabash <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/semantic-math/math-nodes/issues"
},
"homepage": "https://github.com/semantic-math/math-nodes#readme",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.0.0",
"jest": "^20.0.4",
"math-parser": "^0.10.5",
"pre-commit": "^1.2.2",
"webpack": "^2.4.1"
}
}