This repository has been archived by the owner on Nov 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
79 lines (79 loc) · 2.02 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.2",
"description": "base element for react-icons",
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {
"lint": "standard",
"build": "npm run build:cjs && npm run build:es",
"build:cjs": "babel index.js --out-dir lib",
"build:es": "BABEL_ENV=es babel index.js --out-dir es",
"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-cli": "^6.26.0",
"babel-eslint": "^6.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"commitizen": "^2.8.2",
"cz-conventional-changelog": "^1.1.6",
"expect": "^1.20.2",
"ghooks": "^1.3.2",
"mocha": "^2.5.3",
"prop-types": "*",
"react": "^16.2.0",
"react-test-renderer": "^16.2.0",
"standard": "^7.1.2",
"validate-commit-msg": "^2.6.1"
},
"peerDependencies": {
"react": "*"
},
"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": ""
}
}
}