-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.71 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
62
63
64
65
66
{
"name": "frmwrk",
"version": "0.0.1",
"description": "A web framework",
"keywords": [],
"author": "Matt Morgan <matt@mlmorg.com>",
"repository": "git://github.com/mlmorg/frmwrk.git",
"main": "index.js",
"homepage": "https://github.com/mlmorg/frmwrk",
"bugs": {
"url": "https://github.com/mlmorg/frmwrk/issues",
"email": "matt@mlmorg.com"
},
"contributors": [
{
"name": "Matt Morgan"
}
],
"dependencies": {
"vdom-to-html": "^2.1.1",
"virtual-dom": "^2.1.0",
"xtend": "^4.0.0"
},
"devDependencies": {
"coveralls": "^2.10.0",
"istanbul": "^0.3.5",
"itape": "^1.5.0",
"opn": "^1.0.1",
"tape": "^3.4.0",
"test-server-request": "^3.0.0",
"uber-standard": "^4.0.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/mlmorg/frmwrk/raw/master/LICENSE"
}
],
"scripts": {
"check-cover": "istanbul check-coverage --branches=100 --lines=100 --functions=100",
"check-ls": "npm ls 1>/dev/null",
"cover": "npm run test-cover -s && npm run check-cover -s",
"lint": "uber-standard",
"test": "npm run check-ls -s && npm run lint -s && npm run cover -s",
"test-cover": "istanbul cover --report html --print detail -- test/index.js",
"trace": "itape test/index.js --trace",
"travis": "npm run cover -s && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0)",
"view-cover": "opn ./coverage/index.html"
},
"engines": {
"node": ">= 0.10.x"
},
"pre-commit.silent": true,
"itape": {
"trace": {
"debuglog": [
"frmwrk"
],
"leakedHandles": {
"timeout": 5001,
"debugSockets": true
},
"formatStack": true
}
}
}