-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.27 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
{
"name": "iizuna",
"version": "4.0.0",
"description": "A TypeScript Framework for non-pwa pages (like content management systems)",
"keywords": [
"typescript",
"non-pwa",
"framework",
"decorators"
],
"main": "lib/main.js",
"types": "lib/main.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "nyc mocha -r ts-node/register -r jsdom-global/register tests/unit/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/iizunats/iizuna.git"
},
"nyc": {
"cache": true,
"extension": [
".ts"
],
"exclude": [
"lib",
"coverage",
"**/*.d.ts"
],
"reporter": [
"html"
]
},
"author": "Tim Rücker",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/iizunats/iizuna/issues"
},
"homepage": "http://iizunats.com",
"engines": {},
"dependencies": {
"@types/mustache": "^0.8.32",
"es6-promise": "^4.2.6",
"typed-rest-client": "^1.1.2",
"mustache": "^3.1.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"chai": "^4.2.0",
"jsdom": "^16.5.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"ts-node": "^7.0.1",
"typedoc": "^0.23.21",
"typedoc-plugin-internal-external": "^1.0.10",
"typescript": "^3.3.3333"
}
}