forked from witheve/Eve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (54 loc) · 1.54 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
{
"name": "witheve",
"version": "0.2.3",
"description": "Programming designed for humans",
"keywords": ["language", "ide", "relational", "database", "dataflow"],
"homepage": "http://witheve.com",
"repository": {
"type": "git",
"url": "https://github.com/witheve/Eve"
},
"bugs": {
"url": "https://github.com/witheve/Eve/issues"
},
"license": "Apache-2.0",
"bin": {
"eve": "./bin/eve.js"
},
"scripts": {
"build": "./node_modules/.bin/tsc && node ./build/scripts/build.js",
"start": "./node_modules/.bin/tsc && node ./bin/eve.js",
"server": "node ./bin/eve.js",
"prepublish": "./node_modules/.bin/tsc && node ./build/scripts/build.js",
"build-dist": "node ./build/scripts/build-dist.js",
"test": "node ./build/test/all.js | faucet",
"diagrams": "node ./build/scripts/build-syntax-diagrams.js"
},
"dependencies": {
"@types/body-parser": "0.0.33",
"@types/commonmark": "^0.22.29",
"@types/express": "^4.0.33",
"@types/glob": "^5.0.30",
"@types/minimist": "^1.1.29",
"@types/mkdirp": "^0.3.29",
"@types/node": "^6.0.41",
"@types/request": "0.0.31",
"@types/tape": "^4.2.28",
"@types/ws": "0.0.33",
"body-parser": "^1.15.2",
"chevrotain": "^0.19.0",
"commonmark": "^0.26.0",
"express": "^4.14.0",
"glob": "^7.1.1",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"node-uuid": "^1.4.7",
"request": "^2.75.0",
"typescript": "^2.0.3",
"ws": "^1.1.1"
},
"devDependencies": {
"faucet": "0.0.1",
"tape": "^4.6.0"
}
}