-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.22 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
{
"name": "skylark-bundle-cli",
"version": "0.9.0",
"description": "The skylark bundle cli tool.",
"main": "-",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"sbundle": "./bin/cli.js"
},
"homepage": "www.skylarkjs.org",
"repository": {
"type": "git",
"url": "git+https://github.com/skylarkjs/skylark-bundle-cli.git"
},
"keywords": [
"skylark",
"skylarkjs",
"javacript",
"library",
"bundle",
"build"
],
"author": "Hudaokeji Co.,Ltd",
"license": "MIT",
"bugs": "https://github.com/skylarkjs/skylark/issues",
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-react-jsx": "^7.9.4",
"@babel/preset-env": "^7.9.5",
"commander": "^2.20.3",
"comparify": "^0.2.0",
"del": "^1.2.1",
"escodegen": "latest",
"espree": "latest",
"esprima": "latest",
"esquery": "latest",
"esquery-jsx": "latest",
"estemplate": "latest",
"estraverse": "latest",
"fancy-log": "^1.0.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.3.1",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.0",
"gulp-connect": "^2.2.0",
"gulp-footer": "^1.0.5",
"gulp-header": "^1.7.1",
"gulp-jslint": "^1.0.0",
"gulp-livereload": "^3.8.0",
"gulp-noop": "^1.0.0",
"gulp-rename": "~1.2.2",
"gulp-replace": "^0.6.1",
"gulp-runner": "^1.1.0",
"gulp-sourcemaps": "^1.5.2",
"gulp-texttojs": "^1.0.3",
"gulp-uglify": "^3.0.2",
"gulp-usemin": "^0.3.30",
"lru-cache": "^4.1.1",
"plugin-error": "^1.0.1",
"prettier": "^1.19.1",
"run-sequence": "^2.1.0",
"skynode-rjs": "git+https://github.com/skynode-integration/skynode-rjs.git#master",
"through2": "^3.0.1",
"to-ast": "^1.0.0",
"uglify-es": "^3.0.0",
"underscore": "^1.10.2",
"viny": "latest",
"yargs": "^12.0.2"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
},
"shippedProposals": true
}
]
],
"plugins": [
"transform-react-jsx"
],
"ignore": [
"node_modules/**/*"
]
},
"engines": {
"node": ">=0.8.0"
}
}