-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.4 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
{
"name": "config-point",
"version": "0.3.1",
"description": "A JS library to provide configuration points allowing declarative configuration for programs.",
"main": "dist/index_bundle.js",
"repository": "https://github.com/wayfarer3130/config-point",
"author": "Bill Wallace <[email protected]>",
"license": "MIT",
"private": false,
"engines": {
"node": ">=10",
"npm": ">=6",
"yarn": ">=1.16.0"
},
"scripts": {
"build": "webpack && jest",
"dev": "webpack --watch --progress",
"clean": "rimraf dist",
"eslint": "eslint -c .eslintrc.json src",
"eslint-quiet": "eslint -c .eslintrc.json --quiet src",
"eslint-fix": "eslint -c .eslintrc.json --fix src",
"eslint-fix-test": "eslint -c .eslintrc.json --fix test",
"test": "jest",
"jest": "jest"
},
"dependencies": {
"@babel/runtime": "^7.14.6",
"json5": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"eslint": "^7.30.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"lodash": "^4.17.21",
"rimraf": "^3.0.2",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2"
}
}