This repository has been archived by the owner on Aug 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
126 lines (126 loc) · 3.35 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
119
120
121
122
123
124
125
126
{
"name": "react-octagon",
"main": "lib/components/index.js",
"module": "lib/components/index.js",
"description": "react component library",
"files": [
"lib"
],
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-angular": "^7.1.2",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"bluebird": "^3.5.0",
"chokidar": "^2.0.3",
"condition-circle": "^2.0.1",
"coveralls": "^3.0.1",
"cross-env": "^5.2.0",
"execa": "^0.11.0",
"file-loader": "^2.0.0",
"fs-extra": "^7.0.0",
"gh-pages": "^2.0.1",
"html-loader": "^0.5.1",
"husky": "^1.0.0",
"less": "^2",
"lint-staged": "^8.0.0",
"npm-run-all": "^4.1.1",
"perish": "^1.0.2",
"postcss-cli": "^6.0.0",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^12.0.0",
"postcss-loader": "^3.0.0",
"prettier-standard": "^8.0.1",
"react": "^16",
"react-dom": "^16",
"react-remarkable": "^1.1.1",
"react-router-dom": "^4.3.1",
"react-styleguidist": "^8.0.0",
"rucksack-css": "^1.0.2",
"semantic-release": "^15.4.0",
"semantic-ui-react": "^0.84.0",
"snapjerk": "^0.3.0",
"standard": "^12.0.0",
"style-loader": "^0.23.0",
"surge-review": "^1.1.1",
"webpack": "4.28.0"
},
"dependencies": {
"classnames": "^2.2.5",
"d3": "^5.2.0",
"elegant-icons": "^0.0.1",
"flexbox-react": "^4.4.0",
"lato-font": "^3.0.0",
"moment": "^2.22.2",
"prop-types": "^15.6.0",
"semantic-ui-less": "2.4.0"
},
"peerDependencies": {
"react": "^15 || ^16",
"react-dom": "^15 || ^16",
"semantic-ui-react": "^0.82.0 || ^0.83.0 || ^0.84.0"
},
"scripts": {
"dev": "run-p watch:*",
"build": "node scripts/build",
"lint": "standard",
"pretest": "run-p styleguide:build",
"test": "cross-env DEBUG=webjerk* snapjerk",
"prestyleguide:build": "run-p build write-styleguide-sections",
"ci:update-pull-request-with-styleguide": "surge-review --publish-dir styleguide --pull-request $CIRCLE_PULL_REQUEST",
"styleguide:build": "styleguidist build",
"start": "node scripts/start",
"semantic-release": "semantic-release",
"watch:css": "node scripts/watch css",
"watch:js": "node scripts/watch js",
"watch:sui": "node scripts/watch sui",
"write-styleguide-sections": "node scripts/write-styleguide-sections",
"format": "prettier-standard 'src/**/*.js' 'src/**/*.jsx' 'scripts/**/*.js' './*.js'"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"lib",
"semantic",
"styleguide"
]
},
"release": {
"generateNotes": {
"preset": "angular"
},
"verifyConditions": "condition-circle"
},
"repository": {
"type": "git",
"url": "https://github.com/Tripwire/octagon.git"
},
"version": "0.0.0-development",
"sideEffects": [
"*.css"
],
"lint-staged": {
"linters": {
"src/**/*.{js,jsx}": [
"standard",
"prettier-standard",
"git add"
],
"scripts/**/*.js": [
"standard",
"prettier-standard",
"git add"
]
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}