forked from droplet-editor/droplet
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
61 lines (61 loc) · 1.46 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
{
"name": "droplet-editor",
"version": "0.0.2",
"devDependencies": {
"browserify": "^10.2.4",
"browserify-shim": "^3.8.8",
"coffeeify": "^1.1.0",
"grunt": "0.4.5",
"grunt-banner": "latest",
"grunt-bowercopy": "latest",
"grunt-browserify": "^3.8.0",
"grunt-cli": "latest",
"grunt-contrib-coffee": "latest",
"grunt-contrib-concat": "latest",
"grunt-contrib-connect": "latest",
"grunt-contrib-cssmin": "latest",
"grunt-contrib-qunit": "<=0.5.2",
"grunt-contrib-uglify": "latest",
"grunt-contrib-watch": "latest",
"grunt-docco": "latest",
"grunt-mocha-spawn": "latest",
"grunt-mocha-test": "^0.12.7",
"mocha": "^2.2.5",
"seedrandom": "^2.4.0",
"tiny-lr": "^0.1.5",
"watchify": "^3.2.2"
},
"description": "A text editor in blocks",
"main": "dist/droplet-full.min.js",
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"test": "grunt all"
},
"repository": {
"type": "git",
"url": "https://github.com/dabbler0/droplet.git"
},
"author": "Anthony Bau",
"license": "MIT",
"bugs": {
"url": "https://github.com/dabbler0/droplet/issues"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"./vendor/quadtree.js": "QUAD"
},
"homepage": "https://github.com/dabbler0/droplet",
"dependencies": {
"acorn": "^1.2.2",
"sax": "^1.1.1",
"antlr4": "latest",
"parse5": "latest"
}
}