-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.36 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
{
"name": "@rill/http",
"description": "Universal http module with createServer support.",
"version": "7.0.0",
"author": "Dylan Piercey <[email protected]>",
"browser": {
"./dist/server/index.js": "./dist/client/index.js",
"events": "events-light"
},
"bugs": "https://github.com/rill-js/http/issues",
"dependencies": {
"events-light": "^1.0.5",
"get-loc": "^2.0.6",
"get-win": "^1.0.1",
"mini-querystring": "^2.0.6",
"mini-url": "^2.1.9",
"parse-form": "^4.0.5",
"statuses": "^1.4.0",
"tslib": "^1.8.0"
},
"devDependencies": {
"@types/es6-promise": "0.0.33",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.53",
"browserify": "^14.5.0",
"coveralls": "^3.0.0",
"easy-sauce": "^0.4.1",
"es6-promise": "^4.1.1",
"husky": "^0.14.3",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^11.3.0",
"jsdom-global": "^3.0.2",
"lint-staged": "^5.0.0",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"prettier": "^1.8.2",
"source-map-support": "^0.5.0",
"ts-node": "^3.3.0",
"tsify": "^3.0.3",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.6.0",
"typescript": "^2.6.1"
},
"files": [
"adapter",
"dist"
],
"homepage": "https://github.com/rill-js/http",
"keywords": [
"browser",
"client",
"http",
"isomorphic",
"rill",
"server",
"universal",
"web"
],
"license": "MIT",
"lint-staged": {
"*.ts": [
"prettier --write",
"tslint -t codeFrame -c tslint.json",
"git add"
]
},
"main": "dist/server/index.js",
"repository": {
"type": "git",
"url": "https://github.com/rill-js/http"
},
"scripts": {
"build": "tsc",
"build-tests": "browserify -p tsify --debug ./test/*.test.ts > test/_run.js",
"coveralls": "cat coverage/lcov.info | coveralls",
"format-all": "find {src,test} -name '*.ts' | xargs prettier --write",
"mocha": "mocha --bail --timeout=3000 -r ./test/init.js ./test/*.test.ts",
"precommit": "lint-staged && npm test && npm run build",
"saucelabs": "npm run build-tests && easy-sauce -c saucelabs.json",
"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/client/index.d.ts"
}