-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 953 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
41
{
"name": "cokescript",
"version": "0.0.10",
"description": "CokeScript is a whitespace sensitive language that compile to JavaScript",
"main": "cokescript.js",
"scripts": {
"test": "mocha"
},
"keywords": [
"language",
"javascript",
"compiler"
],
"author": "Batiste Bieler",
"license": "BSD",
"dependencies": {
"colors": "^1.0.3",
"gulp": "^3.9.1",
"epegjs": "^0.0.55",
"virtual-dom": "^1.3.0",
"minimist": "~1.1.0"
},
"repository": "https://github.com/batiste/CokeScript",
"preferGlobal": "true",
"bin": {
"coke": "lib/coke.js"
},
"devDependencies": {
"browserify": "~8.1.1",
"epegjs": "^0.0.55",
"gulp-istanbul": "~0.6.0",
"gulp-jshint": "~1.9.0",
"gulp-mocha": "~2.0.0",
"gulp-shell": "^0.3.0",
"gulp-streamify": "0.0.5",
"gulp-uglify": "~1.1.0",
"jshint-stylish": "~1.0.0",
"mocha": "^5.0.0",
"vinyl-source-stream": "~1.0.0"
}
}