-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.84 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.84 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
60
61
62
63
64
65
66
67
{
"name": "rof",
"version": "1.0.0",
"description": "Determine the most reasonable display format for a given numeric value.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/rof"
},
"bugs": {
"url": "https://github.com/rof/issues"
},
"homepage": "https://github.com/rof#readme",
"author": "J. Harshbarger",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "tslint src/**/*.ts",
"unit": "npm run build && nyc ava ./dist/*.spec.js",
"check-coverage": "nyc check-coverage --lines 100 --functions 100 --branches 100",
"test": "npm-run-all lint unit check-coverage",
"watch": "npm run build && concurrently -r --kill-others 'npm run --silent build -- -w' 'sleepms 2000 && ava ./dist/*.spec.js --watch'",
"cov": "npm-run-all unit html-coverage && opn coverage/index.html",
"html-coverage": "nyc report --reporter=html",
"send-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"changelog": "chg release -y && git add -A CHANGELOG.md",
"version": "npm-run-all changelog build",
"np": "npm run build && np",
"docs": "typedoc ./src/index.ts --out docs --theme minimal"
},
"engines": {
"node": ">=4"
},
"devDependencies": {
"@types/node": "^7.0.31",
"ava": "^0.19.0",
"chg": "^0.3.2",
"codecov": "^2.0.1",
"concurrently": "^3.5.0",
"np": "^2.16.0",
"npm-run-all": "^4.0.2",
"nyc": "^10.2.0",
"sleep-ms": "^2.0.1",
"tslint": "^5.0.0",
"tslint-config-swimlane": "^3.0.2",
"typedoc": "^0.9.0",
"typescript": "^2.2.2"
},
"keywords": [],
"nyc": {
"exclude": [
"**/*.spec.js"
]
},
"ava": {
"source": [
"dist/**/*.spec.js"
]
},
"dependencies": {
"tslib": "^1.7.1"
}
}