-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
80 lines (80 loc) · 2.05 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "cheddar-lang",
"description": "The language that works for you",
"homepage": "http://cheddar.vihan.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/cheddar-lang/Cheddar.git"
},
"author": "Vihan <[email protected]> (http://vihan.org/)",
"tags": [
"javascript",
"language",
"interpreter",
"cheddar",
"cheese",
"food"
],
"version": "1.0.5",
"dependencies": {
"atob": "^2.0.3",
"babel-generator": "^6.18.0",
"babel-plugin-compile-cheddar": "^2.0.2",
"bases": "^0.2.1",
"btoa": "^1.1.2",
"cheddar-parser": "^0.4.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"crypto": "0.0.3",
"msgpack5": "^3.4.1",
"nan": "^2.5.0",
"node-gyp": "^3.4.0",
"readline": "^1.3.0",
"xregexp": "^3.1.1"
},
"bin": {
"cheddar": "dist/cli/cheddar"
},
"scripts": {
"prepublish": "make",
"install": "node bin/build.js",
"build": "make build",
"test": "make test",
"start": "./dist/cli/cheddar",
"coveralls": "make test && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"browser_build": "make browser_build"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-istanbul": "^0.11.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-include": "^1.2.0",
"babel-plugin-loop-optimizer": "^1.2.3",
"babel-plugin-strip-checks": "^1.0.3",
"babel-plugin-tailcall-optimization": "^1.0.11",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-preset-env": "^1.1.4",
"babel-traverse": "^6.19.0",
"benchmark": "^2.1.2",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"codecov.io": "^0.1.6",
"coveralls": "^2.11.12",
"install": "^0.8.1",
"mocha": "^3.0.1",
"npm": "^3.10.6",
"remap-istanbul": "^0.6.4"
},
"main": "dist/cli/cheddar",
"directories": {
"test": "test"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cheddar-lang/Cheddar/issues"
},
"config": {
"unsafe-perm": true
}
}