-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.78 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.78 KB
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
{
"name": "plugin-typescript",
"version": "9.0.0",
"description": "TypeScript loader for SystemJS",
"main": "lib/plugin.js",
"homepage": "https://github.com/frankwallis/plugin-typescript",
"authors": [
"Frank Wallis"
],
"keywords": [
"systemjs",
"jspm",
"es6",
"typescript",
"ts",
"tsx",
"angular2",
"react",
"bundle",
"plugin",
"loader"
],
"repository": {
"type": "git",
"url": "https://github.com/frankwallis/plugin-typescript.git"
},
"peerDependencies": {
"typescript": "^2.4.0"
},
"devDependencies": {
"@types/chai": "^4.0.3",
"@types/chai-as-promised": "0.0.31",
"@types/mocha": "^2.2.39",
"@types/node": "^8.0.20",
"@types/sinon": "^2.3.3",
"@types/systemjs": "^0.20.6",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"chokidar-socket-emitter": "^0.6.0",
"http-server": "^0.10.0",
"jspm": "^0.17.0-beta.42",
"mocha": "^3.0.2",
"open": "^0.0.5",
"rollup": "^0.46.1",
"rollup-plugin-includepaths": "^0.2.1",
"sinon": "^3.2.0",
"ts-node": "^3.0.0",
"tslib": "^1.4.0",
"typescript": "^2.6.1"
},
"scripts": {
"bundle": "tsc && rollup -c && tsc ./tmp/plugin.js -m system -lib es6 -allowJs -allowUnreachableCode -removeComments -outDir ./lib",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"test": "mocha --require ./test/environment --timeout 10000 ./test/*.ts"
},
"files": [
"lib/plugin.js"
],
"bin": {},
"license": "MIT",
"jspm": {
"format": "register",
"main": "plugin",
"registry": "github",
"name": "frankwallis/plugin-typescript",
"peerDependencies": {
"typescript": "npm:typescript@^2.4.0"
},
"directories": {
"lib": "lib",
"dist": "lib"
}
}
}