-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
59 lines (59 loc) · 1.47 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
{
"name": "trashable",
"version": "1.0.7",
"description": "A wrapper to make promises cancellable and garbage collectable",
"main": "lib/index.js",
"scripts": {
"build": "babel src/ -d lib/ && flow-copy-source src lib",
"lint": "eslint src/** __tests__/**",
"test": "node --expose-gc `which jest`",
"validate": "npm run lint && flow && npm test",
"precommit": "lint-staged",
"prepush": "npm run validate",
"prepublish": "npm run validate && npm run build"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/hjylewis/trashable.git"
},
"keywords": [
"javascript",
"promise",
"cancellable",
"garbage-collection",
"garbage",
"collection",
"cancel",
"react",
"es6"
],
"author": "hjylewis",
"license": "MIT",
"bugs": {
"url": "https://github.com/hjylewis/trashable/issues"
},
"homepage": "https://github.com/hjylewis/trashable#readme",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.9.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-jest": "^21.2.0",
"flow-bin": "^0.57.3",
"flow-copy-source": "^1.2.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^4.3.0",
"prettier": "1.7.4",
"weak": "^1.0.1"
}
}