-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.5 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
{
"name": "webpack-content-chunks",
"version": "0.1.6",
"description": "A solution for adding webpack content chunks to the server response.",
"homepage": "https://github.com/wikiwi/webpack-content-chunks",
"repository": {
"type": "git",
"url": "git+https://github.com/wikiwi/webpack-content-chunks.git"
},
"bugs": {
"url": "https://github.com/wikiwi/webpack-content-chunks/issues"
},
"files": [
"dist"
],
"jsnext:main": "./dist/esm/index.js",
"main": "./dist/commonjs/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "gulp",
"clean": "rm -r -f dist",
"ci:coveralls": "cat coverage/lcov.info | coveralls",
"docs": "npm run clean && npm run build && documentation build dist/es6/index.js --theme node_modules/documentation-markdown-api-theme -f html -o api.md && cat api.md | add-text-to-markdown -w --section 'API Reference' ./README.md && rm api.md && markdown-toc -i README.md",
"test": "npm run test:lint && npm run test:coverage",
"test:coverage": "cross-env TS_NODE_PROJECT=./test/tsconfig.json istanbul cover -e .ts _mocha -- --opts mocha.opts",
"test:lint": "gulp lint",
"test:run": "cross-env TS_NODE_PROJECT=./test/tsconfig.json mocha --opts mocha.opts",
"test:watch": "cross-env TS_NODE_PROJECT=./test/tsconfig.json mocha --opts mocha.opts --watch"
},
"engines": {
"node": ">=4"
},
"keywords": [
"webpack",
"ssr",
"server-side-rendering",
"code-splitting"
],
"author": "Chi Vinh Le and contributors (https://github.com/wikiwi/webpack-content-chunks/graphs/contributors)",
"license": "MIT",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.45",
"add-text-to-markdown": "^1.0.2",
"cash-cat": "^0.2.0",
"cash-rm": "^0.2.0",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"cross-env": "^3.1.1",
"documentation": "^4.0.0-beta9",
"documentation-markdown-api-theme": "^1.0.2",
"es6-set": "^0.1.4",
"eslint": "^3.8.1",
"eslint-config-airbnb-base": "^9.0.0",
"eslint-plugin-import": "^2.0.1",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-jsonlint": "^1.1.2",
"gulp-tslint": "^6.1.2",
"gulp-typescript": "^3.0.2",
"gulp-yaml-validate": "^1.0.2",
"istanbul": "^1.1.0-alpha.1",
"markdown-toc": "^0.13.0",
"merge2": "^1.0.2",
"mocha": "^3.1.0",
"object-assign": "^4.1.0",
"rimraf": "^2.5.4",
"ts-node": "~1.2.3",
"tslint": "^3.15.1",
"typescript": "^2.0.3"
}
}