-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.62 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.62 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
{
"name": "@highpoint/react-message-listener",
"version": "0.2.2",
"description": "React message-listener HOC",
"homepage": "https://github.com/highpoint-tech/react-message-listener#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/highpoint-tech/react-message-listener.git"
},
"bugs": {
"url": "https://github.com/highpoint-tech/react-message-listener/issues"
},
"author": {
"name": "HighPoint",
"email": "support@mhighpoint.com"
},
"license": "MIT",
"main": "dist/index.js",
"devDependencies": {
"@highpoint/eslint-config": "^0.1.1",
"babel-cli": "^6.16.0",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-env": "^1.5.1",
"babelify": "^7.3.0",
"budo": "^11.2.0",
"eslint": "^5.15.3",
"eslint-config-prettier": "^4.1.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"mkdirp": "^0.5.1",
"prettier": "^1.12.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"recompose": "^0.27.0"
},
"peerDependencies": {
"react": ">=0.14.0"
},
"scripts": {
"prebuild": "mkdirp dist",
"build": "babel src/index.js --out-file dist/index.js",
"experiment":
"budo experiment/index.js --dir experiment --serve bundle.js --live --open",
"lint": "eslint {dev,src}/**/*.js",
"prepublishOnly": "npm run build",
"start": "npm run experiment",
"test": "echo \"Error: no test specified\" && exit 1"
},
"browserify": {
"transform": ["babelify"]
},
"files": ["dist/index.js"],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}