-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.83 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
{
"name": "diel",
"version": "1.0.9",
"description": "data interaction events log is a new SQL embeded DSL for managing the state of history-aware interactive applications",
"main": "build/diel.js",
"jsdelivr": "build/diel.js",
"module": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src/*"
],
"scripts": {
"setup": "npm install",
"build": "tsc -b src",
"bundle": "rollup -c",
"lang": "antlr4ts -visitor -no-listener src/parser/grammar/DIEL.g4",
"test": "tsc -b tests/ && node build/tests/index.js",
"test-watch": "tsc -b -w tests/",
"debug": "node --inspect-brk -r ts-node/register tests/index.ts",
"getAst": "ts-node tests/getAst.ts",
"testEndToEnd": "webpack-dev-server --mode development --hot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yifanwu/diel.git"
},
"keywords": [
"interaction",
"history",
"sql"
],
"author": "yifan wu",
"license": "ISC",
"bugs": {
"url": "https://github.com/yifanwu/diel/issues"
},
"homepage": "https://github.com/yifanwu/diel#readme",
"devDependencies": {
"antlr4ts-cli": "^0.4.0-alpha.4",
"awesome-typescript-loader": "^5.2.1",
"ignore-loader": "^0.1.2",
"rollup": "^1.9.0",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-wasm": "^3.0.0",
"source-map-loader": "^0.2.3",
"ts-node": "^7.0.1",
"tslint": "^5.15.0",
"tslint-loader": "^3.5.3",
"typescript": "^3.4.1",
"typescript-formatter": "^7.2.2",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"@types/sql.js": "^1.0.0",
"antlr4ts": "^0.4.1-alpha.0",
"sql.js": "1.0.0"
}
}