This repository was archived by the owner on Sep 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.25 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.25 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@vforge/componentz",
"version": "0.0.0",
"description": "Zimple React Componentz",
"main": "dist/index.js",
"repository": "git@github.com:vforge/componentz.git",
"author": "Bartosz V. Bentkowski (me@bartoszbentkowski.com)",
"license": "Apache-2.0",
"scripts": {
"build": "concurrently --names \"dist,styleguide\" --prefix \"{name}\" \"yarn build:dist\" \"yarn build:styleguide\"",
"build:dist": "cross-env NODE_ENV=production webpack",
"build:styleguide": "styleguidist build",
"coverage": "jest --coverage",
"coveralls": "yarn coverage --runInBand && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint:css": "stylelint \"src/*.css\"",
"lint:fix": "stylelint \"src/*.css\" --fix",
"lint:js": "eslint .",
"lint": "yarn lint:js && yarn lint:css",
"test": "yarn lint && jest",
"watch:test": "jest --watchAll --notify",
"watch:styleguide": "styleguidist server",
"watch": "concurrently --names \"test,styleguide\" --prefix \"{time}|{name}\" \"yarn watch:test\" \"yarn watch:styleguide\""
},
"dependencies": {
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.5.1",
"coveralls": "^3.0.1",
"cross-env": "^5.1.5",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.3",
"postcss": "^6.0.22",
"postcss-syntax": "^0.10.0",
"react-styleguidist": "^7.0.14",
"react-test-renderer": "^16.3.2",
"sinon": "^5.0.7",
"style-loader": "^0.21.0",
"stylelint": "^9.2.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^0.8.1",
"stylelint-scss": "^3.1.0",
"webpack": "3"
}
}