-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.95 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "unit-value",
"version": "1.0.1",
"description":
"A javascript library for easing working with numeric values that have units associated with them.",
"main": "lib/index.js",
"files": ["lib/", "LICENSE", "package.json", "README.md"],
"scripts": {
"precommit": "pretty-quick --staged",
"clean:docs": "rimraf docs && mkdir docs",
"clean:lib": "rimraf lib && mkdir lib",
"clean:dist": "rimraf dist && mkdir dist",
"clean": "npm run clean:lib && npm run clean:dist",
"lint": "eslint ./src",
"prelib": "npm run clean:lib && npm run lint",
"lib": "babel src -d lib",
"predocs": "npm run clean:docs",
"docs": "jsdoc -c .jsdoc.json -R README.md",
"test": "nyc --require @babel/register mocha --reporter nyan",
"test:ci": "nyc mocha --require @babel/register",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"sample": "node ./samples/node/sample.js",
"postversion": "npm run docs && npm run lib && npm test"
},
"babel": {
"presets": [["@babel/preset-env"]],
"comments": false,
"sourceMaps": "inline"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beforan/unit-value.git"
},
"author": "beforan",
"license": "MIT",
"bugs": {
"url": "https://github.com/beforan/unit-value/issues"
},
"homepage": "https://beforan.github.io/unit-value/",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.42",
"@babel/core": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.42",
"@babel/register": "^7.0.0-beta.42",
"babel-eslint": "^8.2.2",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"eslint-plugin-mocha": "^5.0.0",
"husky": "^0.14.3",
"jsdoc": "^3.5.5",
"jsdoc-export-default-interop": "^0.3.1",
"jsdoc-typeof-plugin": "^1.0.0",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"postman-jsdoc-theme": "0.0.3",
"prettier": "^1.11.1",
"pretty-quick": "^1.4.1",
"rimraf": "^2.6.2"
}
}