-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 913 Bytes
/
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
{
"name": "rexjs-api",
"version": "1.7.1",
"description": "Rexjs is a faster and smaller JavaScript(ES6+) compiler!",
"scripts": {
"start": "node ./node/dev.js",
"build": "node ./node/uglify.js",
"read-me": "node ./bin/rex-node.js ./node/read-me.js",
"pretest-node": "npm run build",
"test-node": "node ./bin/rex-node.js ./bin/test/a.js",
"posttest-node": "npm run read-me",
"prepublish": "npm run test-node"
},
"main": "./dist/rex-api.bundle.js",
"bin": {
"rexjs": "./bin/rex-node.js",
"rexjs-api": "./bin/rex-node.js"
},
"repository": {
"type": "git",
"url": "https://github.com/china-liji/Rexjs"
},
"keywords": [
"rex",
"es6",
"compiler",
"javascript",
"js",
"编译"
],
"license": "MIT",
"homepage": "https://china-liji.github.io/Rexjs.org",
"author": {
"name": "李骥",
"email": "[email protected]"
},
"dependencies": {
"uglify-js": "^3.3.12"
}
}