-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
56 lines (56 loc) · 1.18 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
{
"name": "redux-crud",
"version": "3.3.0",
"description": "Redux CRUD",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "tsc && ava dist/**/*.test.js",
"lint": "tslint src/**/*.ts",
"format": "prettier --bracket-spacing=false --write 'src/**/*.ts'",
"precommit": "lint-staged",
"prepublish": "npm run build"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write --bracket-spacing=false",
"git add"
]
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/Versent/redux-crud"
},
"keywords": [
"redux",
"crud"
],
"author": "Versent",
"license": "MIT",
"bugs": {
"url": "https://github.com/Versent/redux-crud/issues"
},
"homepage": "https://github.com/Versent/redux-crud",
"devDependencies": {
"ava": "^0.22.0",
"husky": "^0.14.3",
"lint-staged": "^4.2.1",
"prettier": "^1.3.1",
"testdouble": "^3.2.5",
"tslint": "^5.7.0",
"typescript": "^2.1.5"
},
"dependencies": {
"action-names": "^0.4.0",
"invariant": "^2.1.0",
"ramda": "^0.24.1"
},
"ava": {
"failFast": true
}
}