This repository has been archived by the owner on May 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.18 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
{
"name": "@quarkly/elementary",
"version": "1.1.4",
"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",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/quarkly/elementary"
},
"keywords": [
"react",
"styled-components",
"css-in-js",
"atomic-css",
"atomic-components",
"styled-system"
],
"peerDependencies": {
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"@emotion/core": "^10.0.9",
"@emotion/styled": "^10.0.9",
"ava": "^1.3.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.3.1",
"babel-plugin-lodash": "^3.3.4",
"codecov": "^3.5.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.7.0",
"husky": "^1.3.1",
"jest": "^24.3.1",
"jest-styled-components": "^6.3.1",
"lint-staged": "^8.1.5",
"nyc": "^13.3.0",
"prettier": "^1.16.4",
"react": "^16.8.5",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.5",
"rebass": "^4.0.2",
"styled-components": "^4.2.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/quarkly/elementary/issues"
},
"homepage": "https://github.com/quarkly/elementary#readme",
"dependencies": {
"lodash": ">=4.17.13",
"lodash.merge": ">=4.6.2"
}
}