-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.58 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
{
"name": "dangerous",
"version": "0.1.21",
"description": "Create dangerous React components",
"main": "dist/dangerous.cjs.js",
"module": "dist/dangerous.esm.js",
"types": "dist/dangerous.d.ts",
"scripts": {
"clean": "shx rm -rf dist",
"test": "echo 'do nothing for now'",
"build:dev": "npm run clean && cross-env NODE_ENV=development rollup -c",
"build:prod": "npm run clean && cross-env NODE_ENV=production rollup -c",
"build:fast": "rollup -c",
"build:sourcemap": "rollup -c -m"
},
"keywords": [
"react",
"dangerous",
"dangerouslySetInnerHTML",
"styled-components"
],
"author": "Sung Kim",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dance2die/dangerous.git"
},
"bugs": {
"url": "https://github.com/dance2die/dangerous/issues"
},
"homepage": "https://github.com/dance2die/dangerous#readme",
"dependencies": {},
"devDependencies": {
"@types/hoist-non-react-statics": "3.0.1",
"@types/node": "^10.12.18",
"@types/react": "^16.7.20",
"@types/react-dom": "^16.0.11",
"cross-env": "^5.2.0",
"hoist-non-react-statics": "^3.2.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"rollup": "^1.1.0",
"rollup-plugin-analyzer": "^3.0.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^4.0.2",
"rollup-plugin-typescript2": "^0.19.2",
"shx": "^0.3.2",
"tslib": "^1.9.3",
"typescript": "^3.2.2"
},
"peerDependencies": {
"react": ">= 16.3.0",
"react-dom": ">= 16.3.0"
}
}