-
-
Notifications
You must be signed in to change notification settings - Fork 302
/
package.json
58 lines (58 loc) · 1.28 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
{
"name": "brace",
"version": "0.11.1",
"description": "browserify compatible version of the ace editor.",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"update": "(cd build && node ./update && node ./update-ts)",
"test": "browserify test/*.js > test/bundle.js --debug && opener test/index.html"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/brace.git"
},
"homepage": "https://github.com/thlorenz/brace",
"dependencies": {},
"devDependencies": {
"browserify": "~4.2.0",
"opener": "~1.3.0",
"shelljs": "~0.2.6",
"tape": "~4.0.0",
"uglify-js": "~2.2.5"
},
"keywords": [
"ace",
"editor",
"browser",
"package",
"bundle",
"inline",
"browserify"
],
"author": {
"name": "Thorsten Lorenz",
"email": "[email protected]",
"url": "http://thlorenz.com"
},
"license": "MIT",
"engine": {
"node": ">=0.6"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/8..latest",
"firefox/21..latest",
"firefox/nightly",
"chrome/26..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
}