-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.53 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
{
"name": "@luna-lang/jsnext",
"version": "0.0.9",
"description": "Extensible JavaScript preprocessor engine.",
"homepage": "https://luna.github.io/jsnext/",
"author": "Wojciech Danilo <[email protected]>",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "npx gulp --gulpfile build/gulpfile.coffee build",
"watch": "npx gulp --gulpfile build/gulpfile.coffee watch",
"watch:start": "npx gulp --gulpfile build/gulpfile.coffee watch:start",
"sandbox": "npx gulp --gulpfile build/gulpfile.coffee sandbox",
"publish": "npx gulp --gulpfile build/gulpfile.coffee publish",
"publish:dev": "npx gulp --gulpfile build/gulpfile.coffee publish:dev",
"publish:minor": "npx gulp --gulpfile build/gulpfile.coffee publish:minor",
"publish:major": "npx gulp --gulpfile build/gulpfile.coffee publish:major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luna/jsnext.git"
},
"directories": {
"lib": "lib"
},
"keywords": [
"JavaScript",
"preprocessor"
],
"bugs": {
"url": "https://github.com/luna/jsnext/issues"
},
"devDependencies": {
"coffeescript": "next",
"gulp": "next",
"gulp-coffee": "^3.0.2",
"gulp-transform": "^3.0.5",
"gulp-rename": "^1.2.2",
"gulp-plumber": "^1.2.0",
"gulp-debug": "^3.2.0",
"webpack": "^3.9.1",
"webpack-dev-server": "^2.9.7",
"coffee-loader": "^0.9.0"
},
"dependencies": {
"acorn": "^5.3.0",
"escodegen": "^1.9.0"
}
}