-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.23 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "savager",
"version": "1.3.6",
"description": "SVG Manager Solution",
"main": "dist/savager.umd.js",
"module": "dist/savager.esm.js",
"browser": "dist/savager.umd.js",
"unpkg": "dist/savager.umd.js",
"scripts": {
"build": "npm run bundle:injection && rollup -c",
"bundle:injection": "node ./bin/bundle-injection.js",
"copy:dist": "cp -r ./dist/*.js ./docs/savager",
"coverage": "npm run test && nyc report --reporter=lcov",
"coveralls": "cat ./coverage/lcov.info | node_modules/.bin/coveralls",
"build:docs": "npm run build && npm run copy:dist && node ./bin/build-docs.js",
"lint": "eslint .",
"prepare": "npm run build",
"prepare:assets": "node ./bin/create-symbols.js -i docs/svg -o docs/assets -t esm",
"test": "npm run test:src",
"test:all": "npm run test:src && npm run test:dist && npm run test:bin",
"test:src": "nyc mocha test/src/*.test.js -r esm",
"test:dist": "nyc mocha test/dist/*.test.js",
"test:bin": "nyc mocha test/bin/*.test.js",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"bin": {
"create-symbols": "./bin/create-symbols.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ddamato/savager.git"
},
"keywords": [
"svg",
"manager",
"icons",
"xml",
"javascript",
"symbol"
],
"author": "Donnie D'Amato <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ddamato/savager/issues"
},
"homepage": "https://ddamato.github.io/savager",
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"auto-changelog": "^2.0.0",
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.3",
"coveralls": "^3.1.0",
"eslint": "^7.3.0",
"esm": "^3.2.25",
"html-minifier": "^4.0.0",
"jsdom": "^16.2.2",
"jsdom-global": "^3.0.2",
"markdown-it": "^11.0.0",
"markdown-it-anchor": "^5.3.0",
"markdown-it-prism": "^2.0.5",
"mocha": "^7.2.0",
"nunjucks": "^3.2.1",
"nyc": "^15.1.0",
"rollup": "^2.13.1",
"rollup-plugin-terser": "^6.1.0"
},
"dependencies": {
"fs-extra": "^9.0.1",
"minimist": "^1.2.5",
"url-join": "^4.0.1"
}
}