forked from gajus/prepack-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.82 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
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"babel": {
"babelrc": true
},
"require": "babel-loader"
},
"dependencies": {
"prepack": "git+https://github.com/facebook/prepack.git#d7bc38602648cbe1e4c396ab61e7fadd13525cc2",
"webpack-sources": "^0.2.3"
},
"description": "A webpack plugin for prepack.",
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-register": "^6.24.1",
"coveralls": "^2.13.0",
"eslint": "^3.19.0",
"eslint-config-canonical": "^8.1.1",
"flow-bin": "^0.44.0",
"flow-copy-source": "^1.1.0",
"husky": "^0.13.3",
"nyc": "^10.2.0",
"semantic-release": "^6.3.6",
"webpack": "^2.4.1"
},
"engines": {
"node": ">6.0.0"
},
"keywords": [
"webpack",
"prepack",
"plugin"
],
"license": "BSD-3-Clause",
"main": "./dist/PrepackPlugin.js",
"name": "prepack-webpack-plugin",
"nyc": {
"include": [
"src/**/*.js"
],
"instrument": false,
"reporter": [
"text-lcov"
],
"require": [
"babel-register"
],
"sourceMap": false
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/prepack-loader"
},
"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.1"
}