-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "grants",
"version": "1.5.2",
"main": "lib/index.js",
"license": "MIT",
"author": "David Yahalomi (github.com/davidyaha)",
"scripts": {
"test": "jest --coverage",
"test:watch": "yarn test -- --watch",
"lint": "eslint src tests",
"prebuild": "rimraf lib",
"build": "babel src -d lib",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.0.0",
"babel-jest": "^22.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"codecov": "^3.0.0",
"eslint": "^4.3.0",
"eslint-plugin-flowtype": "^2.34.0",
"flow-bin": "^0.75.0",
"greenkeeper-lockfile": "1",
"jest": "^22.0.0",
"jest-cli": "^22.0.0",
"rimraf": "^2.6.1"
},
"dependencies": {
"immutable": "^3.8.1"
},
"peerDependencies": {
"babel-polyfill": "^6.23.0"
},
"jest": {
"testPathIgnorePatterns": [
"lib"
],
"testEnvironment": "node"
}
}