forked from swiftcarrot/react-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.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
{
"name": "@deep-impact-ag/react-grid",
"version": "5.0.1",
"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"
},
"license": "MIT",
"dependencies": {
"@babel/runtime": "7",
"@emotion/react": "11"
},
"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/DEEP-IMPACT-AG/react-grid.git"
},
"keywords": [
"react",
"react-component",
"grid",
"emotion"
]
}