-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 939 Bytes
/
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
{
"name": "math-traverse",
"version": "0.2.3",
"description": "Library for traversing and replacing nodes in a math-ast AST",
"main": "dist/math-traverse.js",
"scripts": {
"prepublish": "webpack",
"test": "jest"
},
"repository": "git+https://github.com/semantic-math/math-traverse.git",
"author": "Kevin Barabash <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/semantic-math/math-traverse/issues"
},
"homepage": "https://github.com/semantic-math/math-traverse#readme",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"jest": "^20.0.4",
"webpack": "^2.4.1"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/node_modules/babel-polyfill/dist/polyfill.js",
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}