-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.86 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
67
68
{
"name": "mithril-express-middleware",
"version": "1.1.12",
"description": "express middleware for mithril.js apps",
"main": "index.js",
"scripts": {
"clean": "rm -v $(find . -name '*.js' -o -name '*.d.ts' | grep -v node_modules/) || exit 0",
"coverage": "nyc report",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "find . -name '*.ts' -print | grep -v .d.ts | grep -v node_modules/ | xargs tslint -t verbose",
"nyc": "nyc",
"prepublishOnly": "npm run tsc",
"pretest": "npm run clean && npm run lint && npm run tsc -- --noEmit",
"test": "nyc mocha -r ts-node/register $(find . -name '*.spec.ts' | grep -v node_modules/)",
"tsc": "tsc"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.spec.*"
]
},
"repository": {
"type": "git",
"url": "https://github.com/tlaziuk/mithril-express-middleware.git"
},
"keywords": [
"express",
"isomorphic",
"mithril",
"node",
"render",
"server"
],
"author": "Tomek Łaziuk <tlaziuk@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tlaziuk/mithril-express-middleware/issues"
},
"homepage": "https://github.com/tlaziuk/mithril-express-middleware",
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/mocha": "^5.0.0",
"@types/sinon": "^7.0.0",
"@types/sinon-express-mock": "^1.3.0",
"chai": "^4.0.0",
"coveralls": "^3.0.0",
"express": "^4.0.0",
"mithril": "~1.1.0",
"mocha": "^5.0.0",
"nyc": "^11.0.0",
"sinon": "^7.0.0",
"sinon-express-mock": "^1.3.0",
"ts-node": "^8.0.0",
"tslint": "^5.0.0",
"typescript-tslint-plugin": "<1.0.0",
"typescript": "^3.0.0"
},
"dependencies": {
"@types/express": "^4.0.0",
"@types/mithril": "~1.1.0",
"mithril-route-render": "~1.1.0",
"tslib": "^1.9.0"
}
}