-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"author": "TwicPics <[email protected]> (https://twicpics.com)",
"babel": {},
"dependencies": {
"clean-css": "5.2.1",
"fs-extra": "10.0.0",
"html-minifier": "4.0.0",
"rollup": "2.58.0",
"terser": "5.9.0",
"zip-a-folder": "1.1.0"
},
"description": "Build system for the TwicPics Companion browser extension",
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/eslint-parser": "7.15.7",
"eslint": "7.32.0",
"eslint-config-creative-area": "0.11.1"
},
"engines": {
"node": ">=16"
},
"eslintConfig": {
"extends": "creative-area/es2021/module",
"env": {
"node": true
},
"parser": "@babel/eslint-parser",
"root": true
},
"license": "MIT",
"name": "@twicpics/companion-builder",
"private": true,
"repository": "github:twicpics/companion",
"scripts": {
"postinstall": "eslint . && rollup --config rollup.config.js && node pack"
},
"type": "module"
}