-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 930 Bytes
/
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
{
"name": "vanilla-js-minimal",
"version": "1.0.4",
"description": "Vanilla JavaScript starter with minimal dependencies.",
"main": "src/index.js",
"scripts": {
"preinstall": "npx npm-force-resolutions",
"lint": "eslint src/*.js src/specs/*.js",
"start": "parcel index.html",
"build": "rm -f dist/* && parcel build --no-source-maps index.html",
"test": "jest specs --watch",
"test-ci": "jest specs"
},
"author": "Brian Gershon",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-eslint": "^10.1.0",
"eslint": "^7.18.0",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"parcel-bundler": "^1.12.4"
},
"private": true,
"dependencies": {
"@babel/runtime": "^7.12.5"
},
"resolutions": {
"node-forge": "0.10.0",
"ini": "1.3.8"
}
}