forked from standard-things/create-esm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.89 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": "create-esm",
"version": "1.0.18",
"description": "Create `esm` enabled packages.",
"keywords": "commonjs, ecmascript, export, import, modules, node, require",
"repository": "standard-things/create-esm",
"license": "MIT",
"author": "John-David Dalton <[email protected]>",
"bin": "create-esm",
"private": true,
"engines": {
"node": ">=6"
},
"scripts": {
"precommit": "npm run lint",
"prepare": "npm run build:prod",
"prepub": "npm run build:prod",
"build": "node script/build.js",
"build:prod": "npm run build -- --prod",
"clean": "node script/clean.js",
"lint": "eslint '**/*.js' --fix --quiet",
"pub": "node script/publish.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-block-scoping": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-transform-for-of-as-array": "^1.1.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-plugin-transform-remove-debugger": "^6.9.4",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^7.0.1",
"execa": "^1.0.0",
"fs-extra": "^7.0.1",
"globby": "^8.0.2",
"golden-fleece": "^1.0.9",
"optimize-js-plugin": "0.0.4",
"pkg-install": "0.0.5",
"semver": "^5.7.0",
"terser": "^3.17.0",
"terser-webpack-plugin": "^1.2.3",
"trash": "^4.3.0",
"unused-webpack-plugin": "^2.3.1",
"webpack": "^4.30.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.2",
"yargs": "^12.0.5"
},
"files": [
"create-esm",
"fixtures/.yarn.js",
"fixtures/.yarnrc",
"fixtures/index.js",
"fixtures/main.js"
]
}