-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.54 KB
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
{
"name": "@at-scale/mock-react-components",
"version": "0.0.0-development",
"description": "A collection of mock React components",
"main": "index.js",
"repository": "git@github.com:at-scale/mock-react-components.git",
"author": "rodoabad <rodoabad@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=8.9"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.2.0"
},
"devDependencies": {
"@commitlint/cli": "^5.2.5",
"@commitlint/config-conventional": "^5.2.3",
"chance": "^1.0.12",
"code": "^5.1.2",
"css-modules-require-hook": "^4.2.2",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint-config-rodoabad": "^1.13.1",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.0.3",
"katulong": "^4.1.4",
"katulong-preset-rodoabad": "^2.2.0",
"react-addons-perf": "^15.4.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"semantic-release": "^8.2.0",
"stylelint-config-semantic": "^3.0.0"
},
"bundledDependencies": [
"katulong-preset-rodoabad"
],
"scripts": {
"build": "katulong rodoabad build",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "katulong rodoabad lint",
"precommit": "jest --coverage false",
"prepush": "yarn run test",
"preview": "katulong rodoabad preview",
"test": "yarn check --integrity && yarn run lint && jest",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
}
}