-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.31 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
{
"name": "middleware-brigade",
"version": "0.1.0",
"description": "Brigade is a library for composing and calling middleware.",
"main": "src/index.js",
"scripts": {
"test": "npm run lint && npm run typecheck && npm run unit-tests",
"unit-tests": "jest",
"lint": "eslint src",
"typecheck": "flow check",
"build": "babel src --ignore __tests__ --out-dir dist/src && cp package.json dist/ && cp src/index.js dist/src/index.js.flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JeffRMoore/brigade.git"
},
"author": "Jeff Moore",
"license": "MIT",
"bugs": {
"url": "https://github.com/JeffRMoore/brigade/issues"
},
"homepage": "https://github.com/JeffRMoore/brigade#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "7.2.3",
"babel-jest": "^19.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-env": "^1.3.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"flow-bin": "^0.44.2",
"flow-typed": "^2.1.2",
"jest-cli": "^19.0.2"
},
"dependencies": {
"invariant": "^2.2.2"
}
}