-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "learn-elm-architecture-in-javascript",
"description": "Learn how to use The Elm Architecture in JavaScript to create functional and fast UI!",
"version": "1.0.2",
"homepage": "https://github.com/dwyl/learn-elm-architecture-in-javascript",
"main": "examples/01-counter-basic.html",
"repository": {
"type": "git",
"url": "https://github.com/dwyl/learn-tachyons.git"
},
"author": "@dwyl & friends!",
"devDependencies": {
"decache": "^4.5.1",
"istanbul": "^0.4.5",
"jsdom": "^14.0.0",
"jsdom-global": "^3.0.2",
"live-server": "^1.2.1",
"pre-commit": "^1.2.2",
"qunit-tap": "^1.5.1",
"qunitjs": "^2.3.2",
"tap-spec": "^5.0.0",
"tape": "^4.10.1"
},
"scripts": {
"check-coverage": "istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"postinstall": "npm test",
"retest": "PORT=8000 node_modules/.bin/nodemon ./test/*.js",
"start": "live-server",
"test": "istanbul cover tape ./test/*.test.js | tap-spec"
},
"keywords": [
"Elm",
"architecture",
"functional",
"fast",
"learn",
"beginner",
"tutorial",
"how to"
],
"license": "ISC",
"pre-commit": [
"test",
"check-coverage"
]
}