-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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
{
"name": "@halt/ansi-loader",
"version": "0.0.6",
"description": "A simple ansi characters based loader",
"main": "lib/index.js",
"repository": "github:Halt001/ansi-loader",
"scripts": {
"build": "tsc",
"rollup": "rollup --config rollup.config.js",
"clean": "rimraf ./lib ./dist ./demo/lib",
"all:dev": "export NODE_ENV=development && npm run all",
"all:prod": "export NODE_ENV=production && npm run all",
"all": "npm run clean && tsc && npm run rollup",
"test": "echo \"Error: no test specified\" && exit 1",
"serve:demo": "cp -r ./lib ./demo && http-server ./demo -p 8080",
"publish-npm": "npm publish --access public"
},
"author": "halt",
"license": "ISC",
"files": [
"lib/index.js"
],
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.0.1",
"http-server": "^0.12.3",
"rimraf": "^3.0.2",
"rollup": "^2.34.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-minify-html-literals": "^1.2.5",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.1.2"
},
"dependencies": {
"lit-element": "^2.4.0"
}
}