-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1013 Bytes
/
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
{
"name": "tweenz",
"version": "v3.0.2",
"main": "lib/index.js",
"author": "Mark Larah <[email protected]>",
"license": "MIT",
"keywords": [
"express",
"pyramid",
"tween",
"middleware",
"nodejs",
"node"
],
"homepage": "https://github.com/sharkcore/tweenz",
"scripts": {
"prepublishOnly": "make build",
"test": "jest --coverage",
"lint": "eslint src",
"flow": "flow check"
},
"devDependencies": {
"@sharkcore/eslint-config": "^1.0.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.16.0",
"express": "^4.16.2",
"flow-bin": "0.100.0",
"flow-copy-source": "^2.0.2",
"husky": "^1.2.1",
"jest": "^23.6.0",
"supertest": "^3.0.0"
},
"peerDependencies": {
"express": "^4.x.x"
},
"files": [
"lib"
],
"husky": {
"hooks": {
"pre-commit": "yarn run lint"
}
},
"dependencies": {
"bl": "^2.1.2"
}
}