forked from Tripwire/octagon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.05 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "react-octagon",
"main": "lib/index.js",
"description": "react component library",
"files": [
"lib"
],
"devDependencies": {
"@semantic-release/condition-codeship": "^1.1.0",
"@semantic-release/release-notes-generator": "^2.0.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.7",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-es3-member-expression-literals": "^6.8.0",
"babel-plugin-transform-es3-property-literals": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"babel-register": "^6.18.0",
"babel-standalone": "^6.18.2",
"coveralls": "^2.11.15",
"cross-spawn-promise": "^0.10.1",
"faker": "^4.1.0",
"file-loader": "^0.10.1",
"fs-extra": "^2.0.0",
"gh-pages": "^0.12.0",
"glob": "^7.1.1",
"gulp": "^3.9.1",
"html-loader": "^0.4.4",
"javascript-natural-sort": "^0.7.1",
"jest": "^19.0.2",
"nsp": "^2.6.2",
"perish": "^1.0.1",
"pify": "^2.3.0",
"postcss-cli": "^3.0.0-beta",
"postcss-cssnext": "^2.8.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.1.0",
"postcss-neat": "^2.5.2",
"react-remarkable": "^1.1.1",
"react-styleguidist": "beta",
"react-test-renderer": "^15.4.0",
"ripcord": "^1.1.1",
"rucksack-css": "^0.9.1",
"semantic-release": "^6.3.2",
"semantic-release-cli": "^3.0.2",
"semantic-ui": "^2.2.6",
"standard": "^9.0.0",
"style-loader": "^0.13.2",
"url": "^0.11.0",
"webpack": "^1.13.1"
},
"dependencies": {
"d3": "^4.7.1",
"elegant-icons": "^0.0.1",
"flexbox-react": "^4.2.1",
"lato-font": "^2.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"semantic-ui-react": "^0.66.0"
},
"scripts": {
"build": "node scripts/build",
"secure": "nsp check",
"lint": "standard",
"test": "echo 'TBD'",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"start": "node scripts/start"
},
"standard": {
"ignore": [
"lib",
"semantic",
"styleguide"
],
"parser": "babel-eslint"
},
"ripcord": {
"rules": [
"precommit"
]
},
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"pre-commit": [
"lint",
"test",
"check-licenses",
"secure"
],
"release": {
"generateNotes": "./node_modules/@semantic-release/release-notes-generator",
"verifyConditions": [
"./node_modules/@semantic-release/condition-codeship"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Tripwire/octagon.git"
},
"version": "0.0.0-development"
}