-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·32 lines (31 loc) · 940 Bytes
/
package.json
File metadata and controls
executable file
·32 lines (31 loc) · 940 Bytes
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
{
"name" : "tea-js",
"version" : "0.2.1",
"author" : "Liang Wang",
"description" : "Unfancy JavaScript like coffeescript",
"keywords" : ["javascript", "language", "teascript", "compiler" ],
"repository" : {
"type" : "git",
"url" : "https://github.com/wl879/TeaJS.git"
},
"devDependencies" : {
"source-map" : "*",
"uglify-js" : "*",
"mocha": "^2.3.3",
"json-diff": "~0.3.1"
},
"main" : "./lib/tea.js",
"directories" : {
"lib" : "./lib/"
},
"bin" : {
"tea" : "./lib/index.js"
},
"scripts" : {
"installstp" : "node ./plugin/install.js",
"build" : "node ./lib/index.js -p ./src/ -d define.tea -f index.tea -o ./bin/tea.js -j -v --clear --test",
"build-lib" : "node ./lib/index.js -p ./src/ -d define.tea -o ./lib -v --test",
"test-tokenizer" : "node --expose_gc test/tokenizer.js"
},
"license" : "MIT"
}