-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
122 lines (122 loc) · 3.03 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "skylarkjs",
"version": "0.9.9",
"runtime": {
"version": "0.9.7-beta"
},
"description": "An Elegant JavaScript Library and HTML5 Application Framework.",
"main": "-",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "sjs ",
"browse": "sjs ./dist/"
},
"homepage": "www.skylarkjs.org",
"repository": {
"type": "git",
"url": "git+https://github.com/skylarkjs/skylark.git"
},
"keywords": [
"skylark",
"skylarkjs",
"javacript",
"library",
"framework",
"slax"
],
"author": "Hudaokeji Co.,Ltd",
"license": "MIT",
"bugs": "https://github.com/skylarkjs/skylark/issues",
"dependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.7",
"@babel/plugin-transform-react-jsx": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"amd-loader": "0.0.8",
"asar": "^3.2.0",
"async": "^3.2.4",
"benchpressjs": "^2.5.1",
"clean-css": "^5.3.3",
"commander": "^9.4.1",
"comparify": "~0.2.0",
"copy-dir": "^1.3.0",
"decamelize": "^1.2.0",
"del": "^6.1.1",
"ejs": "^3.1.8",
"electron": "^22.0.0",
"escodegen": "^2.0.0",
"espree": "^9.6.0",
"esquery": "^1.4.0",
"esquery-jsx": "^1.0.0",
"estemplate": "^0.5.1",
"estraverse": "^5.3.0",
"event-stream": "^4.0.1",
"extend": "^3.0.2",
"fancy-log": "^2.0.0",
"gulp": "^4.0.2",
"gulp-append-prepend": "^1.0.9",
"gulp-autoprefixer": "^8.0.0",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.7.0",
"gulp-footer": "^2.1.0",
"gulp-header": "^2.0.9",
"gulp-jslint": "^1.0.10",
"gulp-livereload": "^4.0.2",
"gulp-noop": "^1.0.1",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.4",
"gulp-sourcemaps": "^3.0.0",
"gulp-texttojs": "^1.0.3",
"gulp-uglify": "^3.0.2",
"gulp-usemin": "~0.3.30",
"gulp-util": "^3.0.8",
"gulp4-run-sequence": "^1.0.1",
"less": "^4.2.0",
"lru-cache": "^7.14.1",
"moment": "^2.29.4",
"plugin-error": "^2.0.1",
"postcss": "^8.4.39",
"prettier": "^2.8.1",
"rmdir": "^1.2.0",
"skylark-rjs": "git+https://github.com/skylark-integration/skylark-rjs.git",
"skylark-runtiem": "git+https://github.com/skylarkjs/skylark-runtime.git",
"skylark-slax-browser": "^0.9.3",
"skylark-slax-nodeserver": "^0.9.2",
"skynode-nfs": "github:skylarknode/skynode-nfs",
"skynode-rjs": "github:skynode-integration/skynode-rjs",
"terser": "^5.19.2",
"through2": "^4.0.2",
"to-ast": "^1.0.0",
"underscore": "^1.13.6",
"vinyl": "^3.0.0",
"yargs": "^17.6.2",
"zip-local": "^0.3.5"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
},
"shippedProposals": true
}
]
],
"plugins": [
"transform-react-jsx"
],
"ignore": [
"node_modules/**/*"
]
},
"bin": {
"slax": "./bin/slax.js",
"slib": "./bin/slib.js"
},
"engines": {
"node": ">=0.8.0"
}
}