This repository was archived by the owner on Oct 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.6 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.6 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "weight.js",
"version": "1.4.17",
"description": "JavaScript classes to convert imperial mass units as well as output and parse as text.",
"homepage": "https://meeklogic.github.io/Weight.js/",
"main": "./dist/weight.min.js",
"scripts": {
"build": "npx webpack --config webpack.config.js",
"lint": "./node_modules/.bin/eslint --config ./.eslintrc.js ./src",
"test": "npm run tests",
"tests": "node ./scripts/tests.js | tap-spec",
"test:coverage": "npm run tests:coverage",
"tests:coverage": "npx nyc npm run tests",
"speed": "npm run performance",
"performance": "node ./scripts/performance.js",
"doc": "npm run documentation",
"docs": "npm run documentation",
"documentation": "npx esdoc",
"example": "node ./scripts/example.js"
},
"keywords": [
"weight",
"conversion",
"imperial",
"pound",
"ounce",
"mass"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MeekLogic/Weight.js"
},
"bugs": {
"url": "https://github.com/MeekLogic/Weight.js/issues"
},
"author": "MeekLogic (Tyler Vigario)",
"license": "GPL-3.0-only",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^6.2.2",
"microtime": "^3.0.0",
"nyc": "^14.1.1",
"tap-spec": "^5.0.0",
"tape": "^4.11.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
},
"dependencies": {},
"nyc": {
"include": [
"**/dist/weight.js"
]
}
}