-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 920 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 920 Bytes
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
{
"name": "visual-math-parser",
"version": "1.0.0",
"description": "Parses mathematical expersions (prefix) using binary trees",
"main": "mathParser/index.js",
"repository": "https://github.com/alejandroMA/visual-math-parser",
"scripts": {
"build": "webpack --define process.env.NODE_ENV=\"'production'\" --progress --colors -p",
"watch": "webpack --progress --colors --watch -d",
"test": "jest --onlyChanged",
"test-all": "jest",
"test-coverage": "jest --coverage"
},
"author": "Alejandro Madariaga Angeles",
"license": "Apache-2.0",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"jest": "^17.0.3",
"js-object-pretty-print": "^0.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"d3": "^3.5.17",
"nouislider": "^14.0.3",
"object-assign": "^4.1.0"
}
}