-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
64 lines (64 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
{
"name": "echojs",
"version": "0.0.0",
"description": "Compile ES6 to native code",
"main": "ejs.js",
"bin": {
"ejs": "ejs-driver.js"
},
"volta": {
"node": "20.6.1",
"node-gyp": "9.4.0"
},
"files": [
"lib/closure-conversion.js",
"lib/compiler.js",
"lib/consts.js",
"lib/debug.js",
"lib/echo-util.js",
"lib/ejs.js",
"lib/escodegen.js",
"lib/esprima.js",
"lib/estraverse.js",
"lib/exitable-scope.js",
"lib/jscfa2.js",
"lib/map.js",
"lib/nodevisitor.js",
"lib/optimizations.js",
"lib/runtime.js",
"lib/set.js",
"lib/stack.js",
"lib/terminal.js",
"lib/types.js"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --config ./.prettierrc --write \"lib/**/*.js\" \"test/*.js\" ./ejs-es6.js",
"check-format": "prettier --config ./.prettierrc -l \"lib/**/*.js\" \"test/*.js\" ./ejs-es6.js"
},
"repository": {
"type": "git",
"url": "git://github.com/toshok/echojs.git"
},
"author": "Chris Toshok <[email protected]> (https://blog.toshokelectric.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/toshok/echojs/issues"
},
"homepage": "https://github.com/toshok/echojs",
"private": true,
"dependencies": {
"@babel/cli": "^7.22.15",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.22.20",
"colors": "^1.4.0",
"glob": "^10.3.4",
"mocha": "^10.2.0",
"nan": "^2.18.0",
"prettier": "^3.0.3",
"temp": "^0.9.4"
}
}