-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (66 loc) · 1.56 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
{
"name": "skylark-rjs",
"version": "0.9.0",
"description": "A version of rjs that ported to running on skylarkjs.",
"main": "-",
"scripts": {
"build": "slib build .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"homepage": "www.skylarkjs.org",
"repository": {
"type": "git",
"url": "git+https://github.com/skylark-integration/skylark-rjs.git"
},
"keywords": [
"skylark",
"skylarkjs",
"javacript",
"library",
"utility",
"templating"
],
"author": "Hudaokeji Co.,Ltd",
"license": "MIT",
"bugs": "https://github.com/skylarkjs/skylark/issues",
"dependencies": {
"skylark-langx": "git+https://github.com/skylark-langx/skylark-langx.git",
"skylark-sourcemap": "git+https://github.com/skylark-integration/skylark-sourcemap.git",
"skylark-espree": "git+https://github.com/skylark-integration/skylark-espree.git",
"skylark-uglifyjs": "git+https://github.com/skylark-integration/skylark-uglifyjs.git"
},
"files": [
"demo/",
"dist/",
"src/",
"skins/"
],
"exports": {
".": "./dist/uncompressed/skylark-rjs/main.js",
"./*": "./dist/uncompressed/skylark-rjs/*.js"
},
"skylarkjs": {
"directories": {
"dependencies": "./node_modules"
},
"secondaries": {},
"build": {
"prepare": {
"texttojs": [
"html",
"json",
"css"
],
"jsxtojs": false,
"es6toamd": false,
"cjstoamd": false
},
"bundles": {
"all": true
}
}
},
"engines": {
"node": ">=0.8.0"
}
}