-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
74 lines (74 loc) · 1.81 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
{
"author": {
"email": "gajus@gajus.com",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"require": [
"@babel/register"
]
},
"dependencies": {
"webpack-sources": "^1.3.0"
},
"description": "A webpack plugin for prepack.",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"ava": "^1.0.0-beta.8",
"babel-loader": "^8.0.4",
"babel-plugin-istanbul": "^5.1.0",
"coveralls": "^3.0.2",
"eslint": "^5.6.1",
"eslint-config-canonical": "^13.0.0",
"flow-bin": "^0.82.0",
"flow-copy-source": "^2.0.2",
"husky": "^1.1.1",
"nyc": "^13.1.0",
"semantic-release": "^15.9.17",
"webpack": "^4.20.2"
},
"engines": {
"node": ">6.0.0"
},
"keywords": [
"plugin",
"prepack",
"webpack"
],
"license": "BSD-3-Clause",
"main": "./dist/PrepackPlugin.js",
"name": "prepack-webpack-plugin",
"nyc": {
"all": true,
"include": [
"src/**/*.js"
],
"instrument": false,
"require": [
"@babel/register"
],
"sourceMap": false
},
"peerDependencies": {
"prepack": "^0.2",
"webpack": "^4"
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/prepack-webpack-plugin"
},
"scripts": {
"build": "rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps && flow-copy-source src dist",
"lint": "eslint ./src ./test && flow",
"test": "NODE_ENV=test nyc --reporter=text ava --verbose --serial"
},
"version": "1.0.0"
}