-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.39 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"private": true,
"devDependencies": {
"@ava/babel": "^1.0.0",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/register": "^7.8.3",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-json": "^4.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-replace": "^2.3.0",
"ava": "^3.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"browser-env": "^3.3.0",
"camelcase": "^5.3.1",
"core-js": "^3.6.4",
"coveralls": "^3.0.9",
"cross-env": "^6.0.3",
"del": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.2.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-ava": "^10.0.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"expose-loader": "^0.7.5",
"html-webpack-plugin": "^3.2.0",
"jquery": "^3.4.1",
"lerna": "3.20.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"prettier": "1.19.1",
"rollup": "^1.29.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-terser": "^5.2.0",
"title-case": "^3.0.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --hot --inline",
"lint": "eslint .",
"lint:fix": "prettier '**/*.js' --write && yarn lint --fix",
"test": "yarn lint --quiet && cross-env NODE_ENV=test nyc ava",
"build": "cross-env NODE_ENV=production rollup -c",
"post-build": "git add packages/* && git commit --amend --no-edit",
"lerna-bootstrap": "lerna bootstrap --npm-client=yarn",
"lerna-version": "lerna version --no-push --force-publish",
"lerna-publish": "lerna publish from-package",
"release": "npm-run-all test lerna-version build post-build lerna-publish"
},
"ava": {
"babel": {
"compileAsTests": [
"test/helpers/*"
],
"testOptions": {
"babelrc": false,
"configFile": false
}
},
"require": [
"./test/helpers/_register.js",
"./test/helpers/_setup-browser-env.js"
]
},
"nyc": {
"include": [
"packages/**/src/*.js"
]
}
}