-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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
{
"name": "riot-tour-of-heroes",
"version": "1.0.0",
"description": "The tutorial of Angular by RiotJS",
"main": "app.js",
"scripts": {
"test": "nyc --require esm --require jsdom-global/register --require ./test/register-riot-extension.js mocha src/**/*.spec.js",
"cov": "nyc report --reporter=text-lcov | coveralls",
"cov-html": "nyc report --reporter=html",
"build": "webpack -c --mode production",
"prepublishOnly": "npm test",
"start": "webpack-dev-server --inline --watch --hot --colors -d --port 3000"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kkeeth/riot-tour-of-heroes.git"
},
"keywords": [
"riot",
"riotjs",
"tour-of-heroes"
],
"author": "kkeeth",
"license": "MIT",
"bugs": {
"url": "https://github.com/kkeeth/riot-tour-of-heroes/issues"
},
"homepage": "https://github.com/kkeeth/riot-tour-of-heroes#readme",
"devDependencies": {
"@riotjs/compiler": "^4.9.2",
"@riotjs/ssr": "^4.2.1",
"@riotjs/webpack-loader": "^4.0.3",
"chai": "^4.2.0",
"css-loader": "^4.3.0",
"esm": "^3.2.25",
"jsdom": "^16.2.2",
"jsdom-global": "^3.0.2",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"ress": "^3.0.0",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@riotjs/hot-reload": "^4.0.1",
"@riotjs/lazy": "^1.0.0",
"@riotjs/route": "^5.3.2",
"axios": "^0.20.0",
"riot": "^4.13.2"
},
"directories": {
"test": "test"
}
}