forked from egy186/icojs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.3 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
77
78
79
{
"name": "icojs",
"description": "parse ico file",
"version": "0.15.1",
"author": "egy186",
"browser": "browser.js",
"bugs": {
"url": "https://github.com/egy186/icojs/issues"
},
"dependencies": {
"bmp-js": "0.1.0",
"decode-ico": "^0.4.0",
"file-type": "^14.6.2",
"jpeg-js": "^0.4.0",
"pngjs": "^5.0.0",
"to-data-view": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@egy186/eslint-config": "~0.43.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"chai": "^4.2.0",
"chai-as-promised": "^7.0.0",
"concat": "^1.0.3",
"data-uri-to-buffer": "^3.0.0",
"eslint": "~6.8.0",
"inline-source": "^7.1.0",
"jsdoc-to-markdown": "^6.0.1",
"jsonfile": "^6.0.0",
"jstransformer-markdown-it": "^2.1.0",
"mocha": "^8.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"pixelmatch": "^5.1.0",
"pug-cli": "^1.0.0-alpha6",
"puppeteer": "^5.0.0",
"rimraf": "^3.0.0",
"rollup": "^2.10.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.0"
},
"engines": {
"node": ">=10.18.0"
},
"files": [
"dist",
"src",
"browser.js",
"index.js",
"index.d.ts",
"browser.d.ts"
],
"homepage": "https://egy186.github.io/icojs",
"keywords": [
"ico",
"parse"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/egy186/icojs.git"
},
"scripts": {
"build": "npm-run-all jsdoc --parallel build:*",
"build:dist": "rollup --config rollup.config.js",
"build:docs": "pug templates/index.pug --obj package.json --out docs",
"build:readme": "cd templates && concat --output ../README.md head.md install.md example.md demo.md api.md foot.md",
"clean": "rimraf coverage dist docs/index.html templates/api.md README.md",
"jsdoc": "jsdoc2md --files \"src/**/*.js\" --heading-depth 3 --template templates/api.hbs > templates/api.md",
"lint": "eslint .",
"pretest": "npm run build:dist",
"test": "nyc --reporter lcov --reporter text-summary --report-dir coverage mocha \"test/**/*.spec.js\"",
"version": "npm run build && git add docs/index.html README.md"
}
}