-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.63 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
{
"name": "pages-webpack-plugin",
"version": "0.3.0",
"author": "Izaak Schroeder <izaak.schroeder@gmail.com>",
"license": "CC0-1.0",
"main": "lib/PagesPlugin.js",
"files": [
"lib",
"src"
],
"scripts": {
"prepublish": "npm run clean && npm run copy && npm run build",
"clean": "./node_modules/.bin/rimraf lib ./*.js ./*.map ./*.flow internal",
"build": "./node_modules/.bin/babel --copy-files -s -d lib src",
"copy": "./node_modules/.bin/ncp src lib && ./node_modules/.bin/renamer --regex --find '$' --replace '.flow' 'lib/**/*.js'",
"test": "npm run lint && npm run spec && npm run flow",
"spec": "NODE_ENV=test ./node_modules/.bin/_mocha -r adana-dump --compilers js:babel-core/register -R spec --recursive test/spec",
"lint": "./node_modules/.bin/eslint .",
"flow": "./node_modules/.bin/flow check"
},
"devDependencies": {
"adana-cli": "^0.1.1",
"adana-dump": "^0.1.0",
"adana-format-istanbul": "^0.1.1",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-adana": "^0.5.10",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"chai": "^3.4.1",
"eslint": "^4.5.0",
"eslint-config-metalab": "^7.0.1",
"flow-bin": "^0.67.1",
"mocha": "^2.3.4",
"ncp": "^2.0.0",
"renamer": "^0.6.1",
"rimraf": "^2.6.1",
"webpack": "^3.7.1"
},
"peerDependencies": {
"webpack": ">=1"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2"
}
}