-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.38 KB
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
{
"name": "time-adder",
"version": "0.0.1",
"description": "A JavaScript application to add (and subtract) elapsed time",
"main": "src/index-body.js",
"type": "module",
"jest": {
"testEnvironment": "jest-environment-node",
"transform": {}
},
"scripts": {
"build": "npx webpack --mode=production",
"docs": "docDir='./docs'; [[ -e \"$docDir\" ]] && rm -rf \"$docDir/\"*; npx jsdoc -c ./jsdoc.conf.json --destination \"$docDir/\" --template node_modules/docdash",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest --coverage tape test/*.js",
"watch": "webpack --watch"
},
"watch": {
"test": "{src,test}/*.js"
},
"author": "Allison Sheridan",
"license": "ISC",
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"docdash": "^1.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-google": "^0.14.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsdoc": "^37.5.0",
"jest": "^29.4.3",
"jsdoc": "^4.0.3",
"nodemon": "^3.1.9",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"bootstrap": "^5.3.3",
"is-it-check": "^1.1.1",
"jquery": "^3.6.1",
"mustache": "^4.2.0",
"npm-watch": "^0.11.0"
},
"overrides": {
"semver": "7.5.2"
}
}