-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
{
"name": "webpack-systemjs-export-plugin",
"version": "2.1.0",
"description": "Fully integrates Webpack with SystemJS, export systemjs libraries, expose modules, dynamically load chunks with systemjs, etc.",
"main": "src/webpack-systemjs-export-plugin.js",
"typings": "./src/webpack-systemjs-export-plugin.d.ts",
"scripts": {
"declarations": "tsc src/webpack-systemjs-export-plugin.ts -d",
"build": "tsc",
"watch": "tsc -w",
"pretest": "tsc",
"test": "ava tests/webpack-systemjs-export-plugin.spec.js",
"coverage": "nyc npm test && nyc report --reporter=lcov && codecov",
"test:watch": "ava --converage --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alaingalvan/webpack-systemjs-export-plugin.git"
},
"keywords": [
"systemjs",
"system",
"esm",
"modules",
"webpack",
"plugin",
"export"
],
"author": "Alain Galvan",
"license": "apache",
"bugs": {
"url": "https://github.com/alaingalvan/webpack-systemjs-export-plugin/issues"
},
"homepage": "https://github.com/alaingalvan/webpack-systemjs-export-plugin/",
"dependencies": {
"app-root-path": "^2.0.1",
"varname": "^2.0.3",
"webpack-sources": "^0.1.3",
"systemjs": "^0.19.41",
"webpack": "^2.1.0-beta.28"
},
"peerDependencies": {
"systemjs": "^0.19.41",
"webpack": "^2.1.0-beta.28"
},
"devDependencies": {
"@types/node": "^6.0.53",
"@types/systemjs": "^0.19.33",
"@types/webpack": "^2.0.0",
"ava": "^0.17.0",
"codecov": "^1.0.1",
"lodash": "^4.17.3",
"nyc": "^10.0.0",
"typescript": "^2.1.4"
}
}