-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.15 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
78
79
80
{
"name": "lib-create-react-app",
"version": "0.1.4",
"description": "Share React components from create react app by Harald Rudell",
"author": "Harald Rudell <[email protected]> (http://haraldrudell.com)",
"license": "ISC",
"scripts": {
"build": "npm-run-all --serial 'build:*' ",
"build:binPrepLib": "rollup --config src/rollup.config.js",
"build:eslint": "eslint src/rollup.config.js src/letsroll/*.js",
"build:cleanup": "rimraf tmp",
"clean": "rimraf bin publish/lib",
"reinstall": "npm-run-all --serial reinstall:*",
"reinstall:clean": "rimraf node_modules",
"reinstall:install": "yarn",
"installtest": "jest --testRegex 'src/.*itest.*'",
"installpublished": "jest --testRegex 'src/.*ptest.*'",
"testbuildprep": "bin/preplib",
"testbuildbuild": "react-rollup",
"testbuildpack": "bash -c '(cd publish && npm pack --dry-run)'",
"testbuildpublish": "bin/preplib publish",
"test": "jest",
"pub": "yarn publish --patch --access public"
},
"bin": {
"preplib": "bin/preplib"
},
"keywords": [
"Create React App",
"React",
"Component",
"Library",
"lib",
"rollup"
],
"repository": {
"type": "git",
"url": "https://github.com/haraldrudell/lib-create-react-app"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"dependencies": {
"allspawn": "^1.0.1",
"fs-extra": "^7.0.1"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.9.0",
"jest": "^23.6.0",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"rollup": "^0.67.3",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-thatworks": "^0.0.2"
},
"files": [
"bin",
"src",
"README.md"
]
}