forked from trivago/melody
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 4.1 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
{
"name": "melody",
"description": "Melody is a UI library for building JavaScript applications.",
"license": "Apache-2.0",
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/trivago/melody.git"
},
"scripts": {
"bootstrap": "npm run lerna bootstrap",
"build": "lerna run build",
"build:release": "cross-env NODE_ENV=release lerna run build",
"clean": "rm -rf packages/*/lib && npm run lerna clean -- --yes",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prebundlesize": "cross-env NODE_ENV=production npm run lerna run build",
"bundlesize": "bundlesize",
"precommit": "lint-staged",
"cz": "git-cz",
"fix-lint": "eslint --fix ./packages/*/src",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"lerna": "lerna",
"lint": "eslint ./packages/*/src",
"prepare": "npm run bootstrap && npm run build:release",
"pretest": "./bin/pretest.sh",
"posttest": "./bin/posttest.sh",
"prettier": "prettier --write \"./packages/melody-*/src/**/*.[tj]s\"",
"update-peers": "./bin/updatePeerDependencies.js",
"release": "./bin/release.sh",
"release-travis": "./bin/ci-release.sh",
"test": "TZ=Europe/London jest",
"test-ci": "TZ=Europe/London jest --coverage --runInBand --no-cache && cat ./coverage/lcov.info | coveralls",
"test-travis": "TZ=Europe/London jest --maxWorkers=4",
"test-accept": "cross-env NODE_ENV=mocha lerna run test-accept",
"test-debug": "TZ=Europe/London node --inspect-brk ./node_modules/jest/bin/jest.js -i"
},
"devDependencies": {
"@types/jest": "^22.0.1",
"@types/lodash": "^4.14.54",
"@types/node": "^7.0.7",
"babel-cli": "^6.23.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.1.1",
"babel-jest": "^22.0.6",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-inline-environment-variables": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.16.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.23.0",
"bundlesize": "^0.15.2",
"chai": "^3.0.0",
"chai-subset": "^1.5.0",
"commitizen": "^2.9.6",
"common-tags": "^1.3.1",
"coveralls": "^3.0.0",
"cross-env": "^3.2.3",
"eslint": "^3.17.1",
"eslint-config-idiomatic": "^3.1.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-prettier": "^2.1.2",
"fs-extra": "^7.0.0",
"glob-fs": "^0.1.7",
"husky": "^0.14.3",
"inquirer": "^6.2.0",
"jest": "^22.0.6",
"json": "^9.0.6",
"lerna": "^2.0.0-rc.4",
"lint-staged": "^4.0.2",
"node-libs-browser": "^2.0.0",
"prettier": "^1.5.3",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.1",
"rollup": "^0.63.5",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-uglify": "^4.0.0",
"semver": "^5.5.1",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"source-map": "^0.5.6",
"typescript": "^2.2.1",
"typescript-babel-jest": "^1.0.5"
},
"lint-staged": {
"*.[jt]s": [
"prettier",
"git add"
]
},
"bundlesize": [
{
"path": "./packages/melody-component/lib/index.js",
"maxSize": "1.10 kB"
},
{
"path": "./packages/melody-idom/lib/index.js",
"maxSize": "4.66 kB"
},
{
"path": "./packages/melody-hoc/lib/index.js",
"maxSize": "1.73 kB"
},
{
"path": "./packages/melody-redux/lib/index.js",
"maxSize": "1.35 kB"
}
]
}