-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "component-anatomy",
"version": "1.3.3",
"description": "Identify parts of a figure",
"main": "src/index.js",
"browser": "dist/index.iife.js",
"unpkg": "dist/index.iife.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup src/index.js --file dist/index.iife.js --format iife -p html -p 'postcss={ inject: false }' -p terser",
"dev": "watch-exec -w src/ -c 'npm run build'",
"test": "npm run build && mocha",
"prepublishOnly": "npm run build",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddamato/component-anatomy.git"
},
"keywords": [
"web-component",
"anatomy"
],
"author": "Donnie D'Amato <fauxserious@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ddamato/component-anatomy/issues"
},
"homepage": "https://ddamato.github.io/component-anatomy",
"devDependencies": {
"auto-changelog": "^2.3.0",
"chai": "^4.3.4",
"jsdom": "^17.0.0",
"mocha": "^9.1.1",
"rollup": "^2.56.3",
"rollup-plugin-html": "^0.2.1",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"watch-exec": "^1.2.2"
}
}