-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 951 Bytes
/
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
{
"name": "system",
"version": "2.0.1",
"author": "Kris Kowal <[email protected]>",
"description": "Flexible module and resource system",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/gutentags/system.git"
},
"keywords": [
"module",
"resource",
"system",
"commonjs",
"npm"
],
"bugs": {
"url": "https://github.com/gutentags/system/issues"
},
"homepage": "https://github.com/gutentags/system#readme",
"main": "./system.js",
"bin": {
"jscat": "./bundle.js"
},
"browser": {
"./url.js": "./browser-url.js",
"./system.js": "./browser-system.js"
},
"devDependencies": {
"eslint": "^2.13.1",
"istanbul": "^0.4.5"
},
"scripts": {
"test": "npm ls >/dev/null && node test && eslint . && echo pass",
"cover": "istanbul cover --report html test",
"build": "node bundle.js boot-entry.js > boot.js",
"lint": "eslint ."
}
}