This repository has been archived by the owner on Jun 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.1 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
60
61
62
63
64
65
66
{
"name": "hooyaks-react",
"description": "React bindings for hooyaks",
"main": "./lib/index.js",
"version": "0.0.0-semantically-released",
"scripts": {
"commit": "git-cz",
"clean": "rimraf lib dist coverage",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/hooyaks-react.min.js --config webpack.config.development.js",
"build:umd:min": "webpack src/index.js dist/hooyaks-react.min.js --config webpack.config.production.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"lint": "eslint test src examples",
"test": "NODE_ENV=test mocha",
"test:watch": "npm test -- --watch",
"test:cov": "babel-node $(npm bin)/isparta cover $(npm bin)/_mocha",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build && npm run build:umd",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/vyorkin/hooyaks-react.git"
},
"author": "Vasiliy Yorkin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vyorkin/hooyaks-react/issues"
},
"homepage": "https://github.com/vyorkin/hooyaks-react#readme",
"peerDependencies": {
"hooyaks": "vyorkin-play/hooyaks",
"react": "^0.14.0"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-core": "^5.8.22",
"babel-eslint": "^4.0.5",
"babel-loader": "^5.3.2",
"commitizen": "2.4.6",
"cz-conventional-changelog": "1.1.4",
"eslint": "^1.1.0",
"eslint-config-airbnb": "0.1.0",
"eslint-plugin-react": "^3.2.2",
"expect": "^1.8.0",
"ghooks": "1.0.1",
"isparta": "^3.0.3",
"jsdom": "^7.0.2",
"mocha": "^2.2.5",
"react-addons-test-utils": "^0.14.2",
"rimraf": "^2.4.2",
"semantic-release": "^4.3.5",
"webpack": "^1.11.0",
"webpack-merge": "^0.3.0"
},
"dependencies": {
"is-plain-obj": "^1.1.0"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "npm run test"
}
}
}