-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.44 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.44 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
52
53
54
55
56
57
58
59
60
{
"name": "action-types",
"version": "0.0.1",
"description": "Conveniently create action types with nested namespace support.",
"main": "dist/action-types.js",
"watch": {
"test": "{src,test}/*.js"
},
"scripts": {
"test": "babel-node test | faucet",
"lint": "standard",
"watch": "npm-watch",
"compile": "babel -d dist/ src/",
"beforepublish": "npm run lint && npm test && npm run compile",
"prepublish": "not-in-install && npm run beforepublish || in-install"
},
"files": [
"dist",
"LICENSE"
],
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/layflags/action-types.git"
},
"keywords": [
"flux",
"redux",
"action",
"types",
"namespace",
"nested",
"react"
],
"author": "Lay Flags <code@layfla.gs>",
"license": "MIT",
"bugs": {
"url": "https://github.com/layflags/action-types/issues"
},
"homepage": "https://github.com/layflags/action-types#readme",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"faucet": "0.0.1",
"in-publish": "^2.0.0",
"npm-watch": "^0.1.4",
"pre-commit": "^1.1.3",
"standard": "^7.1.2",
"tape": "^4.5.1"
},
"dependencies": {
"babel-runtime": "^6.9.2",
"lodash.isplainobject": "^4.0.4"
}
}