-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.2 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
{
"author": "Patrick Lee <[email protected]>",
"name": "luc",
"repository": {
"type": "git",
"url": "https://github.com/pllee/luc.git"
},
"license": "MIT",
"version": "0.3.1",
"description": "a small javascript framework",
"main": "lib/luc.js",
"keywords": [
"framework",
"utils",
"class",
"browser",
"client",
"server"
],
"devDependencies": {
"grunt-exec": "~0.4.2",
"grunt-contrib-uglify": "~0.2.2",
"grunt-saucelabs": "~4.0.2",
"grunt-contrib-connect": "~0.5.0",
"browserify": "2.23.1",
"expect.js": "0.2.0",
"mocha": "~1.11.0",
"es5-shim-sham": "*",
"wrench": "~1.5.1",
"grunt-cli": "~0.1.9",
"grunt-devtools": "0.1.0-7",
"adm-zip": "~0.4.3"
},
"testling": {
"browsers": [
"ie6",
"ie7",
"ie8",
"ie9",
"firefox/3.0",
"firefox/4.0",
"firefox/19",
"firefox/nightly",
"chrome/24",
"chrome/25",
"chrome/canary",
"opera/12",
"opera/next",
"safari/5.1",
"safari/6.0",
"iphone/6.0",
"ipad/6.0"
],
"harness": "mocha",
"files": "test/*.js"
},
"scripts": {
"test": "node_modules/.bin/grunt test"
}
}