-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·96 lines (96 loc) · 2.86 KB
/
package.json
File metadata and controls
executable file
·96 lines (96 loc) · 2.86 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "jsl_kit",
"main": "lib/create.umd.js",
"module": "lib/create.es.js",
"types": "lib/types/create.d.ts",
"version": "0.0.16",
"description": "a jsl dev kit, for lib, vue, react, phaser project",
"repository": {
"type": "git",
"url": "https://github.com/atbulbs/jsl_cli.git"
},
"files": [
"bin",
"lib"
],
"publishConfig": {
"access": "public"
},
"author": "atbulbs@gmail.com",
"license": "MIT",
"bin": {
"jsl": "bin/jsl",
"jsl-create": "bin/create"
},
"scripts": {
"build": "npm run rollup-build && npm publish",
"rollup-build": "cross-env NODE_ENV=production rollup -c ./rollup.config.ts",
"start": "cross-env NODE_ENV=development rollup -c ./rollup.config.ts --watch"
},
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.0.0",
"@types/jest": "^24.0.23",
"@types/webpack": "^4.4.32",
"@types/webpack-dev-server": "^3.1.6",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"compression-webpack-plugin": "^3.0.0",
"cross-env": "^5.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jest": "^24.9.0",
"npm": "^6.11.2",
"portfinder": "^1.0.23",
"raw-loader": "^3.1.0",
"rollup": "^1.27.2",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.25.2",
"ts-jest": "^24.1.0",
"ts-loader": "^5.4.5",
"ts-node": "^8.2.0",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.19.0",
"tslint-config-standard": "^8.0.1",
"tslint-loader": "^3.5.4",
"typescript": "^3.5.3",
"webpack": "^4.39.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.4.1",
"@babel/runtime": "^7.6.3",
"babel-cli": "^6.26.0",
"rollup-plugin-json": "^4.0.0",
"webpack-merge": "^4.1.4",
"async": "^2.6.1",
"chalk": "^2.4.1",
"commander": "^2.16.0",
"consolidate": "^0.15.1",
"download-git-repo": "https://registry.npm.taobao.org/download-git-repo/-/download-git-repo-1.1.0.tgz",
"handlebars": "^4.0.11",
"inquirer": "^6.0.0",
"metalsmith": "^2.3.0",
"ora": "^3.0.0",
"request": "^2.87.0",
"rimraf": "^2.6.2",
"semver": "^5.5.0",
"user-home": "^2.0.0"
},
"devDependencies": {
"@types/node": "^10.17.28",
"request-promise-any": "^1.0.9",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"sync-request": "^6.0.0"
}
}