forked from gorangajic/react-icon-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.92 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-icon-base",
"version": "2.1.0",
"description": "base element for react-icons",
"main": "lib/index.js",
"scripts": {
"lint": "standard",
"build": "babel index.js --out-dir lib",
"prepublish": "npm test && npm run build",
"test": "npm run lint && mocha test --compilers js:babel-register"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/gorangajic/react-icon-base.git"
},
"keywords": [
"react",
"icon",
"base"
],
"author": "Goran Gajic <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gorangajic/react-icon-base/issues"
},
"homepage": "https://github.com/gorangajic/react-icon-base#readme",
"devDependencies": {
"babel": "6.5.2",
"babel-cli": "6.7.5",
"babel-eslint": "^6.1.2",
"babel-plugin-add-module-exports": "0.1.2",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"commitizen": "^2.8.2",
"cz-conventional-changelog": "^1.1.6",
"expect": "^1.20.2",
"ghooks": "^1.3.2",
"mocha": "^2.5.3",
"react": "^15.2.1",
"react-addons-test-utils": "^15.2.1",
"prop-types": "15.5.8",
"standard": "^7.1.2",
"validate-commit-msg": "^2.6.1"
},
"peerDependencies": {
"react": "*",
"react-dom": "*",
"prop-types": "*"
},
"standard": {
"globals": [
"beforeEach",
"describe",
"it"
],
"parser": "babel-eslint"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": [
"issue",
"master",
"revert"
],
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "subject does not match subject pattern!",
"helpMessage": ""
}
}
}