This repository has been archived by the owner on Jun 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "load.js",
"author": "Malachi Griffie <[email protected]>",
"version": "0.3.2",
"license": "MPL",
"description": "A small, comprehensive script loader for Javascript and TypeScript",
"homepage": "https://github.com/nexussays/load.js",
"main": "dist/load.min.js",
"keywords": [
"loader",
"script-loader"
],
"bugs": {
"url": "https://github.com/nexussays/load.js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nexussays/load.js.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"test-alt": "grunt test && cat test/test-bundled.js | tape-run"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/8..latest",
"chrome/22..latest",
"firefox/22..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
},
"devDependencies": {
"browserify": "^5.10.1",
"grunt": "^0.4.5",
"grunt-browserify": "^3.0.0",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-copy": "^0.5.0",
"grunt-contrib-uglify": "^0.5.1",
"grunt-git": "^0.2.14",
"grunt-sync": "^0.2.0",
"grunt-ts": "^1.11.13",
"semver": "^3.0.1",
"tape": "^3.0.0",
"testling": "^1.7.0"
}
}