This repository has been archived by the owner on Jan 20, 2022. It is now read-only.
forked from robinweser/fela
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.56 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
{
"name": "fela",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap --reject-cycles",
"build": "./scripts/build.sh",
"clear": "lerna clean --yes && rimraf coverage && rimraf _book && rimraf packages/*/es && rimraf packages/*/lib",
"docs": "gitbook install && gitbook build && gh-pages -d _book",
"check": "yarn format && yarn lint && yarn coverage && yarn flow",
"format": "prettier --write \"packages/*/src/**/*.js\"",
"flow": "flow",
"lint": "eslint packages/*/src/**/*.js",
"release": "git pull --rebase && yarn run check && yarn build && lerna publish --force-publish",
"test": "cross-env BABEL_ENV=commonjs jest",
"coverage": "yarn test --coverage",
"watch": "yarn test --watch",
"postinstall": "yarn build"
},
"workspaces": [
"packages/*",
"examples/*",
"benchmarks/*"
],
"jest": {
"rootDir": "packages",
"testPathIgnorePatterns": [
"/__fixtures__/",
"/__helpers__/",
"/lib/"
],
"coveragePathIgnorePatterns": [
"/__fixtures__/",
"/__helpers__/",
"/lib/"
]
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.0",
"babel-core": "^6.6.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^20.0.1",
"babel-plugin-inferno": "^1.9.0",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-plugin-transform-dev-warning": "^0.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-node-env-inline": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"beautify": "^0.0.8",
"codeclimate-test-reporter": "^0.3.1",
"cross-env": "^1.0.8",
"css-in-js-utils": "^3.0.0",
"enzyme": "2.8.2",
"enzyme-to-json": "1.5.1",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-flowtype": "^3.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "0.86.0",
"gh-pages": "^0.11.0",
"gitbook-cli": "^2.3.0",
"gitbook-plugin-advanced-emoji": "^0.2.2",
"gitbook-plugin-anker-enable": "0.0.4",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "^2.0.0",
"gitbook-plugin-prism": "^2.4.0",
"gzip-size": "^3.0.0",
"jest": "^19.0.2",
"lerna": "^3.4.3",
"prettier": "^1.7.4",
"recompose": "^0.25.0",
"rimraf": "^2.6.1"
}
}