forked from everweij/react-laag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.46 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.46 KB
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": "react-laag",
"version": "1.6.2",
"description": "",
"author": "Erik Verweij",
"license": "MIT",
"repository": "everweij/react-laag",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"sideEffects": false,
"scripts": {
"clean": "rm -rf dist",
"type-check": "tsc --emitDeclarationOnly true --declaration true",
"test": "nodemon",
"test:ci": "karma start --single-run",
"test:debug": "karma start --browsers=ChromeDebugging",
"build": "yarn run clean && yarn test:ci && rollup -c && node ssr-test && yarn run type-check && yarn run uglify && gzip ./dist/index.es.min.js",
"start": "rollup -c -w",
"uglify": "uglifyjs ./dist/index.es.js --compress --mangle -o ./dist/index.es.min.js",
"prepare": "yarn run build",
"coverage": "open -a 'Google Chrome' ./coverage/index.html "
},
"dependencies": {},
"peerDependencies": {
"react": "^16.8.0 || ^16.9.0",
"react-dom": "^16.8.0 || ^16.9.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@testing-library/react": "^9.1.3",
"@types/mocha": "^5.2.7",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"babel-loader": "^8.0.6",
"expect": "^24.9.0",
"gzip-cli": "^1.0.1",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^4.3.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^6.2.0",
"nodemon": "^1.19.2",
"prettier": "^1.17.1",
"puppeteer": "^1.20.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"resize-observer-polyfill": "^1.5.1",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.2",
"uglify-es": "^3.3.9",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
},
"files": [
"dist"
]
}