-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.14 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
{
"name": "midori",
"version": "3.3.0",
"author": "Izaak Schroeder <izaak.schroeder@gmail.com>",
"license": "CC0-1.0",
"repository": "metalabdesign/midori",
"main": "index.js",
"scripts": {
"prepublish": "npm run clean && npm run build && npm run import",
"clean": "./node_modules/.bin/rimraf lib ./*.js ./*.map ./*.flow match internal test/*.js test/*.map test/*.flow",
"build:doc": "cd web; npm install; npm run build; ncp ./dist/client ../doc",
"build": "./node_modules/.bin/babel --copy-files -s -d lib src",
"import": "./node_modules/.bin/ncp lib .",
"test": "npm run lint && npm run spec && npm run flow",
"spec": "NODE_ENV=test ./node_modules/.bin/jest --coverage --runInBand=${JEST_SERIAL:-$CI}",
"lint": "./node_modules/.bin/eslint .",
"flow": "./node_modules/.bin/flow check"
},
"dependencies": {
"bl": "^2.0.0",
"buffer-indexof": "^1.1.1",
"chalk": "^2.3.0",
"compression": "^1.7.1",
"content-type-parser": "^1.0.2",
"http-errors": "^1.6.3",
"http-headers": "^3.0.2",
"http-proxy": "^1.16.2",
"http-status-codes": "^1.3.0",
"iconv-lite": "^0.4.23",
"on-finished": "^2.3.0",
"on-headers": "^1.0.1",
"parseurl": "^1.3.2",
"path-to-regexp": "^3.0.0",
"qs": "^6.5.1",
"raw-body": "^2.3.2",
"request-ip": "^2.1.1",
"send": "^0.16.1",
"uuid": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "7.4.3",
"@babel/core": "7.4.3",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/preset-env": "7.4.3",
"@babel/preset-flow": "7.0.0",
"@babel/register": "7.4.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.7.1",
"babel-loader": "8.0.4",
"body-parser": "1.18.3",
"cookies": "0.7.3",
"eslint": "5.9.0",
"eslint-config-metalab": "10.1.0",
"flow-bin": "0.84.0",
"jest": "24.7.1",
"ncp": "2.0.0",
"negotiator": "0.6.1",
"node-fetch": "2.2.0",
"prettier": "1.14.3",
"rimraf": "2.6.2",
"useragent": "2.3.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/*.spec.js"
],
"coveragePathIgnorePatterns": [
".*.spec.js"
]
}
}