-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.59 KB
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
{
"name": "request-state-wrapper",
"version": "1.0.0",
"description": "A tiny package for managing the state of asynchronous requests.",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"type": "flow",
"lint": "eslint ./src",
"pre-commit": "yarn test && yarn type && yarn lint",
"build": "babel --presets @babel/preset-flow src/index.js --out-dir dist --presets=@babel/env",
"update:patch": "npm version patch -m 'Update to %s'",
"update:minor": "npm version minor -m 'Update to %s'",
"update:major": "npm version major -m 'Update to %s'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simonschwartz/request-state-wrapper.git"
},
"author": "Simon Schwartz",
"license": "ISC",
"bugs": {
"url": "https://github.com/simonschwartz/request-state-wrapper/issues"
},
"homepage": "https://github.com/simonschwartz/request-state-wrapper#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.15.3",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "^0.94.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"prettier": "1.16.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn pre-commit"
}
}
}