This repository has been archived by the owner on Aug 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.08 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "capsid-todomvc",
"version": "1.0.0",
"description": "todomvc by capsid",
"main": "index.html",
"scripts": {
"start": "static .",
"test": "run-s unit-test",
"unit-test": "karma start",
"lint": "standard",
"fix": "standard --fix",
"dist": "browserify -t babelify src/index.js > dist/app.js",
"min": "terser dist/app.js -c -m > dist/app.min.js",
"size": "gzip-size dist/app.min.js",
"check": "npm run dist && open index.html",
"codecov": "npm run test && codecov",
"open-cov": "open coverage/Chrome*/lcov-report/index.html",
"precommit": "lint-staged"
},
"repository": "https://github.com/capsidjs/todomvc.git",
"keywords": [
"todomvc",
"capsid"
],
"author": "Yoshiya Hinosawa <[email protected]> (https://twitter.com/kt3k)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.6",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "^10.0.0",
"babel-plugin-istanbul": "^6.0.0",
"babelify": "^10.0.0",
"browserify": "^16.0.0",
"capsid": "^0.29.0",
"chai": "^4.1.0",
"codecov": "^3.0.0",
"gzip-size-cli": "^3.0.0",
"hash-route": "^2.0.3",
"husky": "^4.0.2",
"karma": "^4.1.0",
"karma-browserify": "^7.0.0",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage": "^2.0.0",
"karma-coveralls": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.0.1",
"lint-staged": "^10.0.3",
"mocha": "^7.0.1",
"node-static": "^0.7.10",
"npm-run-all": "^4.1.1",
"prettier": "^1.14.2",
"standard": "^14.0.0",
"terser": "^4.0.0",
"todomvc-app-css": "^2.0.6",
"todomvc-common": "^1.0.2",
"watchify": "^3.7.0"
},
"lint-staged": {
"*.js": [
"prettier --write --no-semi --single-quote",
"standard --fix",
"git add"
]
},
"standard": {
"parser": "babel-eslint",
"env": [
"browser",
"mocha"
],
"globals": [
"$"
],
"ignore": [
"dist"
]
}
}