-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
90 lines (90 loc) · 2.32 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
82
83
84
85
86
87
88
89
90
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register"
]
},
"dependencies": {
"ajv": "^4.10.4",
"ajv-keywords": "^1.5.0",
"debug": "^2.3.3",
"enhanced-resolve": "^3.0.2",
"flow-runtime": "0.0.3",
"jsdom": "^9.8.3",
"memory-fs": "^0.4.1",
"override-require": "^1.1.1",
"source-map": "^0.5.6",
"webpack-merge": "^2.1.0",
"webpack-node-externals": "^1.5.4"
},
"description": "Abstracts universal consumption of application code base using webpack.",
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-flow-runtime": "0.0.3",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-plugin-transform-flow-comments": "^6.17.0",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-env": "^1.1.6",
"babel-register": "^6.18.0",
"coveralls": "^2.11.15",
"css-loader": "^0.26.1",
"eslint": "^3.11.1",
"eslint-config-canonical": "^6.0.0",
"flow-bin": "^0.37.4",
"gitdown": "^2.5.0",
"husky": "^0.12.0",
"nyc": "^10.0.0",
"semantic-release": "^6.3.2",
"sinon": "^2.0.0-pre.4",
"webpack": "^2.1.0-beta.27"
},
"engines": {
"node": ">=5"
},
"keywords": [
"isomorphic",
"universal",
"webpack"
],
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"name": "isomorphic-webpack",
"nyc": {
"include": [
"src/**/*.js"
],
"instrument": false,
"reporter": [
"text-lcov"
],
"require": [
"babel-register"
],
"sourceMap": false
},
"peerDependencies": {
"webpack": "^2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/isomorphic-webpack"
},
"scripts": {
"build": "NODE_ENV=production babel ./src --out-dir ./dist --copy-files",
"generate-documentation": "gitdown ./.README/README.md --output-file ./README.md",
"lint": "eslint ./src ./test && flow",
"precommit": "npm run lint && npm run test",
"test": "NODE_ENV=development ava --verbose && npm run lint && npm run build"
},
"version": "1.4.6"
}