-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.17 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
{
"name": "mugiwara",
"version": "0.1.4",
"description": "blazing fast minimal css-in-js solution",
"main": "dist/mugiwara.umd.js",
"files": [
"dist"
],
"scripts": {
"lint": "node ./scripts/eslint/index.js",
"linc": "node ./scripts/eslint/only-changed.js",
"build": "node scripts/rollup/build.js",
"clean-node-modules": "find ./ -name 'node_modules' -exec rm -rf '{}' +",
"prepublishOnly": "yarn test && yarn build",
"test": "yarn lint && yarn prettier:stat && yarn jest:ci",
"jest": "jest --testPathIgnorePatterns \"(__fixtures__|matcher.js)\"",
"jest:ci": "jest --no-cache --testPathIgnorePatterns \"(__fixtures__|matcher.js)\" --ci --runInBand",
"prettier": "node ./scripts/prettier/index.js write-changed",
"prettier:stat": "node ./scripts/prettier/index.js",
"prettier:all": "node ./scripts/prettier/index.js write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raphamorim/mugiwara.git"
},
"keywords": [],
"author": "Raphael Amorim <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/raphamorim/mugiwara/issues"
},
"homepage": "https://github.com/raphamorim/mugiwara#readme",
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"chalk": "^2.3.2",
"cli-table": "^0.3.1",
"eslint": "^4.18.2",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"fast-memoize": "^2.3.2",
"glob": "^7.1.2",
"jest": "^22.4.2",
"mem": "^3.0.0",
"memoizee": "^0.4.12",
"minimatch": "^3.0.4",
"prettier": "^1.5.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rollup": "^0.56.5",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.2.0",
"rollup-plugin-optimize-js": "^0.0.4",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"moduleDirectories": [
"node_modules"
],
"verbose": true,
"resetModules": true
}
}