-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.62 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "es6module",
"version": "0.1.0",
"description": "A starting point to create ES6 module for browser",
"repository": "jonathanlurie/es6module",
"main": "dist/es6module.cjs.js",
"module": "dist/es6module.es.js",
"browser": "dist/es6module.umd.js",
"entry": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production rollup -c",
"dev": "serve . & NODE_ENV=development rollup -w -c",
"doc": "documentation build src/index.js -o ./doc/ --sort-order alpha --theme doc_theme -f html",
"lint": "eslint src"
},
"author": "Jonathan Lurie",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"documentation": "^12.3.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"rollup": "^2.6.1",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-webworkify": "0.0.4",
"serve": "^11.3.0"
},
"eslintConfig": {
"extends": "eslint-config-airbnb-base",
"rules": {
"semi": [
"error",
"never"
],
"no-underscore-dangle": [
"off",
{
"allowAfterThis": true
}
],
"max-len": [
"warn",
{
"code": 150
}
],
"prefer-destructuring": [
"off"
],
"no-param-reassign": [
"warn"
]
}
}
}