-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 2.14 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
{
"name": "@quarkly/atomize",
"version": "1.0.20",
"author": "Eddort",
"description": "Library for creating atomic react components",
"main": "build/cjs",
"module": "build/esm",
"sideEffects": false,
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run docs",
"clean": "rm -rf build/*",
"build:cjs": "NODE_ENV=cjs babel src --out-dir build/cjs --ignore '**/*.test.js'",
"build:esm": "NODE_ENV=esm babel src --out-dir build/esm --ignore '**/*.test.js'",
"test": "jest",
"test:watch": "jest --watch",
"cover": "jest --coverage && npx codecov",
"lint": "eslint .",
"docs": "babel-node scripts/genAliases.js"
},
"repository": {
"type": "git",
"url": "https://github.com/quarkly/atomize"
},
"keywords": [
"react",
"styled-components",
"css-in-js",
"atomic-css",
"atomic-components",
"styled-system"
],
"peerDependencies": {
"styled-components": ">=5.0.1",
"react": "16.x || 17.x"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.3",
"@emotion/core": "^10.0.27",
"@emotion/styled": "^10.0.27",
"ava": "^3.4.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"babel-plugin-lodash": "^3.3.4",
"codecov": "^3.6.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest-styled-components": "^7.0.0",
"lint-staged": "^10.0.8",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"react": "^16.13.0",
"react-test-renderer": "^16.13.0",
"styled-components": "^5.0.1"
},
"dependencies": {
"lodash": "^4.17.15"
},
"publishConfig": {
"access": "public"
}
}