This repository has been archived by the owner on Apr 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.64 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
{
"name": "learn-riot",
"version": "2.6.1",
"description": "learn how to use riot.js to build ultra-efficient web applications",
"repository": {
"type": "git",
"url": "https://github.com/docdis/learn-riot.git"
},
"keywords": [
"riot.js",
"learn",
"tutorial",
"how-to",
"full-stack"
],
"author": "@Danwhy, @besarthoxhaj, @nelsonic, <your name here!>",
"license": "ISC",
"bugs": {
"url": "https://github.com/docdis/learn-riot/issues"
},
"homepage": "https://github.com/docdis/learn-riot",
"dependencies": {
"hapi": "^15.0.2",
"inert": "^4.0.2",
"riot": "^2.6.1"
},
"devDependencies": {
"decache": "^3.0.3",
"istanbul": "^0.4.0",
"jsdoc": "^3.3.3",
"live-server": "^1.1.0",
"nodemon": "^1.8.1",
"pre-commit": "1.1.2",
"tap-spec": "^4.1.0",
"tape": "^4.2.2"
},
"scripts": {
"docs": "./node_modules/jsdoc/jsdoc.js ./lib/*.js",
"test": "PORT=8000 ./node_modules/tape/bin/tape ./test/*.js",
"test2": "PORT=8000 ./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/*.test.js",
"coverage": "PORT=8000 ./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/*.js && ./node_modules/.bin/istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"open-coverage": "open ./test/coverage.html",
"spec": "PORT=8000 node ./node_modules/tape/bin/tape ./test/*.js | node_modules/tap-spec/bin/cmd.js",
"dev": "PORT=8000 ./node_modules/.bin/live-server --open=./examples",
"start": "node examples/static-server.js"
},
"pre-commit": [
"coverage"
],
"engines": {
"node": ">=4.2.2"
}
}