-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 1022 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
33
34
35
36
37
38
39
40
41
42
{
"name": "formula-calculator",
"version": "0.2.7",
"description": "A formula calculator",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec",
"build": "babel --plugins transform-runtime src --out-dir dist",
"calc": "node test/run.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QingFlow/FormulaCalculator.git"
},
"keywords": [
"node.js",
"autotesting"
],
"author": "Qingflow",
"license": "MIT",
"bugs": {
"url": "https://github.com/QingFlow/FormulaCalculator/issues"
},
"homepage": "https://github.com/QingFlow/FormulaCalculator",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"chalk": "^2.4.2"
},
"dependencies": {
"antlr4": "^4.7.1",
"babel-runtime": "^6.26.0",
"moment": "^2.19.2"
},
"directories": {
"test": "test"
}
}