forked from ibwgr/todomvc-es6-custom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "todomvc-es6-custom",
"version": "1.0.0",
"description": "Simple TodoMVC Application with vanilla ES6",
"author": "Ueli Kunz <kunz@ideadapt.net>",
"license": "MIT",
"scripts": {
"dev": "npx rimraf .parcel-cache && npx parcel src/app/index.html",
"start:ci": "npm run build && npx http-server dist --port 1234",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "npx mocha src/test/unit/**.mjs",
"test:e2e": "npx mocha src/test/e2e/*.test.mjs --timeout 5000 --inspect-brk",
"build": "npx rimraf dist .parcel-cache && npx parcel build src/app/index.html",
"install:chromedriver": "browser-driver-manager install chromedriver"
},
"engines": {
"node": "18"
},
"browserslist": [
"last 2 chrome versions"
],
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"eslint": "6.7.2",
"mocha": "^10.1.0",
"selenium-webdriver": "4.1.1",
"sinon": "7.5.0"
},
"dependencies": {
"browser-driver-manager": "^1.0.4",
"he": "^1.2.0",
"http-server": "^14.1.1",
"parcel": "2.7.0",
"rimraf": "3.0.2",
"todomvc-app-css": "2.3.0"
}
}