This repository has been archived by the owner on Aug 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathpackage.json
73 lines (73 loc) · 2.51 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
{
"private": true,
"name": "cf-ui",
"description": "Cloudflare UI Framework",
"author": "James Kyle <jkyle@cloudflare.com>",
"license": "BSD-3-Clause",
"jest": {
"cacheDirectory": ".jest",
"testMatch": [
"**/test/**/*.js"
],
"setupFiles": [
"./test_setup/setup-fetch.js",
"./test_setup/patch-console.js"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "./scripts/build.sh",
"lint": "eslint packages/*/src/**/*.js packages/*/example/**/*.js packages/*/test/**/*.js",
"test": "cross-env BABEL_ENV=commonjs jest --no-cache",
"updated": "lerna updated --only-explicit-updates",
"prettier": "node prettier.js",
"clean": "lerna clean --yes && rimraf .jest packages/**/es packages/**/lib packages/**/dist",
"publish": "git pull --rebase && check-installed-dependencies && npm run build && lerna publish --skip-temp-tag --conventional-commits --message 'chore: Publish' && git push",
"update-snapshot": "cross-env BABEL_ENV=commonjs jest --no-cache --updateSnapshot",
"commitmsg": "validate-commit-msg"
},
"devDependencies": {
"autoprefixer": "^6.7.6",
"babel-cli": "^6.23.0",
"babel-core": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-plugin-polished": "^1.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"check-installed-dependencies": "^1.0.0",
"conventional-changelog-cli": "^1.3.1",
"cross-env": "^3.2.3",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.0",
"eslint": "^3.17.1",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^7.2.0",
"glob": "^7.0.3",
"husky": "^0.13.4",
"isomorphic-fetch": "^2.2.1",
"jest": "^20.0.3",
"jest-fetch-mock": "^1.0.8",
"js-beautify": "^1.6.14",
"jsdom": "^9.11.0",
"lerna": "^2.0.0-rc.5",
"polished": "^1.2.1",
"prettier": "^1.1.0",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.3",
"react-test-renderer": "^15.4.2",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.1",
"validate-commit-msg": "^2.12.2"
},
"dependencies": {}
}