-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.6 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
{
"name": "@rill/chain",
"description": "Compose all functions and Rill apps provided into a valid middleware.",
"version": "1.1.1",
"author": "Dylan Piercey <[email protected]>",
"bugs": "https://github.com/rill-js/chain/issues",
"devDependencies": {
"@types/es6-promise": "0.0.33",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.51",
"coveralls": "^3.0.0",
"husky": "^0.14.3",
"lint-staged": "^5.0.0",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"prettier": "^1.8.2",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.6.0",
"typescript": "^2.6.1"
},
"files": [
"dist"
],
"homepage": "https://github.com/rill-js/chain",
"keywords": [
"chain",
"compose",
"isomorphic",
"middleware",
"rill",
"universal"
],
"license": "MIT",
"lint-staged": {
"*.ts": [
"prettier --write",
"tslint -t codeFrame -c tslint.json",
"git add"
]
},
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/rill-js/chain"
},
"scripts": {
"build": "tsc",
"coveralls": "cat coverage/lcov.info | coveralls",
"format-all": "find {src,test} -name '*.ts' | xargs prettier --write",
"mocha": "mocha -r ts-node/register ./test/**/*.test.ts",
"precommit": "lint-staged && npm test && npm run build",
"test": "nyc --extension=.ts --include=src/**/*.ts --reporter=lcov --reporter=text-summary npm run mocha",
"test-ci": "nyc --extension=.ts --include=src/**/*.ts --reporter=lcovonly --reporter=text npm run mocha"
},
"types": "dist/index.d.ts"
}