-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.38 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
{
"name": "ng2-contextmenu",
"main": "./bundles/index.js",
"module": "./bundles/index.js",
"version": "0.0.0-development",
"types": "bundles/contextmenu.module.d.ts",
"scripts": {
"start": "webpack-dev-server --inline --progress --port 8181",
"test": "karma start config/karma.conf.js",
"clean": "rimraf bundles",
"build": "npm-run-all -s clean -p lint test -p build:ts build:system",
"build:ts": "tsc",
"build:system": "./build.js",
"lint": "tslint src/**/*.ts",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ds82/angular2-contextmenu/blob/master/LICENSE"
}
],
"dependencies": {
"angular-in-memory-web-api": "0.5.3",
"bootstrap": "^3.3.7"
},
"peerDependencies": {
"@angular/common": ">=2",
"zone.js": ">=0.6.25",
"reflect-metadata": ">=0.1.8"
},
"devDependencies": {
"@angular/common": "2",
"@angular/compiler": "2",
"@angular/core": "2",
"@angular/forms": "2",
"@angular/http": "2",
"@angular/platform-browser": "2",
"@angular/platform-browser-dynamic": "2",
"@angular/upgrade": "2",
"@types/core-js": "0.9.34",
"@types/jasmine": "2.5.35",
"@types/node": "4.0.30",
"angular2-template-loader": "^0.4.0",
"async": "2.1.2",
"awesome-typescript-loader": "^3.0.0-beta.18",
"concurrently": "^3.0.0",
"core-js": "^2.4.1",
"css-loader": "^0.23.1",
"del": "2.2.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.15.0",
"jasmine-core": "^2.4.1",
"karma": "^1.2.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"npm-run-all": "3.1.1",
"null-loader": "^0.1.1",
"phantomjs-prebuilt": "^2.1.7",
"raw-loader": "^0.5.1",
"reflect-metadata": "^0.1.8",
"rimraf": "^2.5.2",
"rxjs": "5.5.2",
"semantic-release": "^8.2.0",
"style-loader": "^0.13.1",
"systemjs-builder": "0.15.32",
"tslint": "3.15.1",
"typescript": "^2.0.3",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.14.0",
"zone.js": "^0.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/ds82/ng2-contextmenu.git"
}
}