-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
53 lines (53 loc) · 1.34 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
{
"name": "@docscript/docscript",
"version": "0.0.3",
"description": "A DSL for Javascript designed to build the DOM inspired by Kotlin",
"main": "docscript.js",
"bin": {
"dsc": "./dsc.sh"
},
"scripts": {
"start": "supervisor app",
"test": "mocha -w",
"debug": "google-chrome http://127.0.0.1:8080/debug?port=5858 2> /dev/null & mocha --debug --debug-brk"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samuelgoto/docscript.git"
},
"keywords": [
"javascript",
"dsl",
"dom",
"kotlin",
"jsx",
"jfx",
"scripts"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/samuelgoto/docscript/issues"
},
"homepage": "https://github.com/samuelgoto/docscript#readme",
"dependencies": {
"acorn": "^5.1.1",
"acorn-es7": "git+https://github.com/angelozerr/acorn-es7.git",
"acorn-es7-plugin": "^1.1.7",
"astring": "^1.0.3",
"commander": "^2.11.0",
"falafel": "^2.1.0",
"lit-html": "^0.7.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-dom-server": "0.0.5",
"should": "^11.2.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"chai": "^4.1.0",
"mocha": "^3.5.0"
}
}