-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 1.22 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
{
"name": "type-to-reducer",
"version": "1.2.0",
"description": "Create reducer functions based on an object keyed by action types",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "mocha test/index.test.js --ui bdd --require babel-register",
"lint": "eslint . --ext .js",
"build": "babel src -d lib --ignore *.test.js && cp -f src/index.d.ts lib/index.d.ts",
"prepublish": "npm run build"
},
"pre-push": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tomatau/type-to-reducer.git"
},
"author": "Thomas `tomatao` Hudspith-Tatham <tom@tomatao.co.uk>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomatau/type-to-reducer/issues"
},
"homepage": "https://github.com/tomatau/type-to-reducer#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.2",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"eslint": "^6.2.2",
"eslint-config-rackt": "^1.1.1",
"mocha": "^7.0.1",
"pre-push": "^0.1.1",
"sinon": "^9.0.0",
"sinon-chai": "^3.3.0"
}
}