-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "arithmetic-js",
"version": "2.0.0",
"description": "Basic arithmetic without eval()",
"main": "dist/arithmetic.umd.js",
"directories": {
"test": "test"
},
"scripts": {
"prebuild": "eslint lib test",
"build": "rollup -c rollup.config.umd.js && rollup -c rollup.config.es6.js",
"pretest": "rollup -c rollup.config.test.js",
"test": "mocha build/test-bundle.js --reporter list",
"prepublish": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/steckel/arithmetic-js.git"
},
"keywords": [
"math",
"arithmetic",
"shunting yard",
"reverse polish notation"
],
"author": "Curtis Steckel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/steckel/arithmetic-js/issues"
},
"files": [
"lib",
"dist"
],
"homepage": "https://github.com/steckel/arithmetic-js#readme",
"devDependencies": {
"babel-eslint": "^5.0.0-beta6",
"babel-preset-es2015-rollup": "^1.1.1",
"eslint": "^1.10.3",
"mocha": "^2.3.4",
"rollup": "^0.24.1",
"rollup-plugin-babel": "^2.3.9",
"rollup-plugin-multi-entry": "^1.1.0",
"source-map-support": "^0.4.0"
}
}