-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.46 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
{
"name": "react-grid",
"version": "4.0.4",
"description": "react grid component",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && NODE_ENV=production rollup -c",
"test": "jest --coverage",
"prepublishOnly": "npm test && npm run build"
},
"author": "Wang Zuo <wangzuo@swiftcarrot.com> (https://swiftcarrot.com)",
"maintainers": [
{
"name": "adjusted",
"email": "wangzuo@swiftcarrot.com"
}
],
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.28"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"babel-jest": "^26.2.2",
"babel-preset-swiftcarrot": "^1.1.0",
"jest": "^26.2.2",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rollup": "^2.23.1"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/swiftcarrot/react-grid.git"
},
"keywords": [
"react",
"react-component",
"grid",
"emotion"
],
"bugs": {
"url": "https://github.com/swiftcarrot/react-grid/issues"
},
"homepage": "https://swiftcarrot.dev/react-grid"
}