-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "@zserge/o",
"version": "0.0.6",
"description": "The worst possible React clone",
"module": "o.mjs",
"scripts": {
"test": "eslint o.mjs test.mjs && node --experimental-modules test.mjs",
"doc": "cp o.mjs o.js ; jsdoc . ; rm o.js",
"minify": "terser --compress=drop_console,ecma=6,passes=2 --mangle --module -- o.mjs > o.min.mjs && sed -i 's/const/let/g' o.min.mjs && ls -l o.min.mjs && gzip -cf9 o.min.mjs > o.min.mjs.gz && ls -l o.min.mjs.gz && rm -f o.min.mjs.gz"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"prettier"
],
"plugins": [
"prettier"
],
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"ecmaVersion": "2015",
"sourceType": "module"
}
},
"repository": "zserge/o",
"author": "Serge Zaitsev <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"jsdoc": "^3.6.3",
"jsdom": "^15.2.0",
"terser": "^4.4.0"
}
}