forked from MithrilJS/mithril-node-render
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.65 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
{
"name": "mithril-render",
"version": "1.1.10",
"description": "rendering mithril.js components headlessly",
"main": "index.js",
"scripts": {
"clean": "find . -name '*.js' -o -name '*.d.ts' | grep -v node_modules/ | grep -v types/ | xargs rm -v || 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/ | grep -v .spec. | xargs tslint -t verbose",
"nyc": "nyc",
"prepare": "npm run tsc",
"pretest": "npm run clean && npm run lint",
"test": "nyc mocha -r ts-node/register *.spec.ts",
"tsc": "tsc"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.spec.*"
]
},
"repository": {
"type": "git",
"url": "https://github.com/tlaziuk/mithril-render.git"
},
"keywords": [
"isomorphic",
"mithril",
"mithril.js",
"node",
"render"
],
"author": "Tomek Łaziuk <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tlaziuk/mithril-render/issues"
},
"homepage": "https://github.com/tlaziuk/mithril-render",
"peerDependencies": {
"mithril": "~1.1.0"
},
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/mocha": "^2.0.0",
"@types/sinon": "^7.0.0",
"chai": "^4.0.0",
"coveralls": "^3.0.0",
"mithril": "~1.1.0",
"mocha": "^5.0.0",
"nyc": "^13.0.0",
"sinon": "^7.0.0",
"ts-node": "^8.0.0",
"tslint": "^5.0.0",
"typescript": "^3.0.0",
"typescript-tslint-plugin": "^0.3.0"
},
"dependencies": {
"@types/mithril": "~1.1.0",
"tslib": "^1.9.0"
}
}