-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
87 lines (87 loc) · 2.22 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "rill",
"description": "Universal router for web applications.",
"version": "7.0.4",
"author": "Dylan Piercey <[email protected]>",
"browser": {
"./dist/attach/index.js": "./dist/attach/browser.js"
},
"bugs": "https://github.com/rill-js/rill/issues",
"dependencies": {
"@rill/chain": "^1.1.1",
"@rill/error": "^1.3.3",
"@rill/http": "^7.0.0",
"@rill/https": "^7.0.0",
"byte-length": "^1.0.2",
"content-check": "^1.0.4",
"cookie": "^0.3.1",
"header-field": "^1.0.5",
"is-typeof": "^2.0.2",
"mini-querystring": "^2.0.6",
"mini-url": "^2.1.9",
"path-to-regexp": "^1.7.0",
"statuses": "^1.4.0",
"tslib": "^1.9.0"
},
"devDependencies": {
"@types/es6-promise": "0.0.33",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.6",
"coveralls": "^3.0.0",
"get-port": "^3.2.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"mocha": "^5.0.1",
"nyc": "^11.4.1",
"prettier": "^1.11.0",
"source-map-support": "^0.5.3",
"supertest": "^3.0.0",
"ts-node": "^5.0.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.9.0",
"typescript": "^2.7.2"
},
"files": [
"dist"
],
"homepage": "https://rill.site",
"keywords": [
"api",
"app",
"application",
"framework",
"http",
"isomorphic",
"marko",
"middleware",
"react",
"rill",
"router",
"svelte",
"universal",
"web"
],
"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/rill"
},
"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"
}