-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 972 Bytes
/
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
{
"name": "inline-outline",
"version": "1.0.0",
"description": "Create and edit a document outline using a web component",
"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"
},
"keywords": [
"web-component",
"outline"
],
"author": "",
"license": "ISC",
"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"
}
}