-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "svg-progress-steps",
"version": "1.1.5",
"description": "A zero dependency micro library for dynamically updating progress using SVG and js",
"main": "src/index.js",
"author": "ross matheson",
"license": "MIT",
"keywords": [
"progress steps",
"svg progress",
"dynamic progress steps"
],
"dependencies": {},
"scripts": {
"dev": "yarn check_node && webpack --watch --mode=development",
"build": "yarn check_node && webpack --mode=production",
"check_node": "check-node-version --node $(cat .nvmrc)",
"audit:fix": "yarn check_node && npx yarn-audit-fix",
"test": "jest"
},
"jest": {
"testEnvironment": "jsdom",
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
]
},
"browserslist": "> 0.25%, not dead",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.2",
"check-node-version": "^4.2.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Sub-Tech/svg-progress-steps"
}
}