-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 972 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
{
"name": "range-arithmetic",
"version": "1.0.6",
"description": "A library for addition and subtraction of numeric ranges",
"main": "lib/Range.js",
"scripts": {
"compile": "babel --presets es2015,stage-0 --optional runtime -d lib/ src/",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saarraz1/range-arithmetic.git"
},
"keywords": [
"range",
"set",
"arithmetic"
],
"author": "Saar Raz",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/saarraz1/range-arithmetic/issues"
},
"homepage": "https://github.com/saarraz1/range-arithmetic#readme",
"dependencies": {
"assert": "^1.3.0",
"is-number": "^2.1.0",
"tiny-range": "0.0.3"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"install": "^0.6.1",
"npm": "^3.8.3"
}
}