-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 884 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": "amounts",
"version": "0.5.0",
"description": "Represent amounts of stuff with units and conversions",
"license": "MIT",
"repository": "aholstenson/amounts",
"scripts": {
"test": "node_modules/.bin/mocha test/**/*.test.js && node_modules/.bin/eslint .",
"coverage": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec ./test/**/*.test.js"
},
"main": "index.js",
"keywords": [
"measurements",
"quantities",
"quantity",
"angle",
"area",
"duration",
"energy",
"illuminance",
"length",
"mass",
"power",
"pressure",
"speed",
"temperature",
"volume"
],
"devDependencies": {
"chai": "^4.0.1",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-plugin-node": "^5.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.4.2"
},
"dependencies": {}
}