-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
112 lines (112 loc) · 4.46 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "angular2-contextmenu",
"version": "0.8.2",
"description": "An Angular 2 component to show a context menu on an arbitrary component",
"main": "angular2-contextmenu.js",
"scripts": {
"flow.install:typings": "./node_modules/.bin/typings install",
"flow.compile": "npm run flow.install:typings && npm run flow.compile:common && npm run flow.compile:system ",
"flow.compile:common": "./node_modules/.bin/ngc",
"flow.compile:system": "./.config/bundle-system.js",
"flow.copy:src": "./node_modules/.bin/cpy angular2-contextmenu.ts \"components/*.ts\" ts --parents",
"flow.clean": "./node_modules/.bin/del bundles coverage demo-build typings \"components/**/*.+(js|d.ts|js.map)\" dist \"angular2-contextmenu.+(js|d.ts|js.map)\"",
"flow.deploy:gh-pages": "npm run flow.build:prod && ./node_modules/.bin/gh-pages -d demo-build",
"flow.eslint": "./node_modules/.bin/eslint --ignore-path .gitignore --ext js --fix . .config",
"disabled.flow.tslint": "./node_modules/.bin/gulp lint",
"flow.lint": "npm run flow.eslint && npm run flow.tslint",
"flow.changelog": "./node_modules/.bin/conventional-changelog -i CHANGELOG.md -s -p angular -v",
"flow.github-release": "./node_modules/.bin/conventional-github-releaser -p angular",
"flow.build:prod": "NODE_ENV=production ./node_modules/.bin/webpack --progress --color",
"flow.build:dev": "./node_modules/.bin/webpack --progress --color",
"flow.serve:dev": "./node_modules/.bin/webpack-dev-server --inline --colors --display-error-details --display-cached",
"flow.serve:prod": "NODE_ENV=production ./node_modules/.bin/webpack-dev-server --inline --colors --display-error-details --display-cached",
"disabled.prepublish": "npm run flow.clean && npm run flow.compile",
"disabled.postpublish": "npm run flow.deploy:gh-pages",
"start": "npm run flow.serve:dev",
"pretest": "npm run flow.lint",
"test": "NODE_ENV=test ./node_modules/.bin/karma start",
"disabled.preversion": "npm test",
"version": "npm run flow.changelog && git add -A",
"postversion": "git push && git push --tags"
},
"typings": "angular2-contextmenu.d.ts",
"keywords": [
"angular2",
"contextmenu",
"angular2-contextmenu",
"ng2",
"ng2-contextmenu"
],
"author": "Isaac Mann <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/isaacplmann/angular2-contextmenu.git"
},
"devDependencies": {
"@angular/common": "^2.4.1",
"@angular/compiler": "^2.4.1",
"@angular/compiler-cli": "^2.4.1",
"@angular/core": "^2.4.1",
"@angular/platform-browser": "^2.4.1",
"@angular/platform-browser-dynamic": "^2.4.1",
"@angular/platform-server": "^2.4.1",
"angular2-template-loader": "^0.5.0",
"async": "1.5.2",
"bootstrap": "3.3.6",
"codecov": "1.0.1",
"codelyzer": "0.0.28",
"compression-webpack-plugin": "0.3.1",
"conventional-changelog-cli": "1.2.0",
"conventional-github-releaser": "1.1.2",
"copy-webpack-plugin": "3.0.0",
"cpy-cli": "1.0.1",
"del-cli": "0.2.0",
"es6-promise": "3.2.1",
"es6-shim": "0.35.1",
"es7-reflect-metadata": "1.6.0",
"eslint-config-valorsoft": "0.0.14",
"exports-loader": "0.6.3",
"file-loader": "0.8.5",
"gh-pages": "0.11.0",
"gitignore-to-glob": "0.2.1",
"gulp": "3.9.1",
"gulp-size": "2.1.0",
"gulp-tslint": "5.0.0",
"html-loader": "0.4.3",
"html-webpack-plugin": "2.17.0",
"istanbul-instrumenter-loader": "0.2.0",
"jasmine": "2.4.1",
"karma": "0.13.22",
"karma-chrome-launcher": "1.0.1",
"karma-coverage": "1.0.0",
"karma-jasmine": "1.0.2",
"karma-phantomjs-launcher": "1.0.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "1.7.0",
"lite-server": "2.2.0",
"markdown-loader": "0.1.7",
"marked": "0.3.5",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "2.1.7",
"prismjs": "1.5.0",
"prismjs-loader": "0.0.3",
"raw-loader": "0.5.1",
"reflect-metadata": "0.1.2",
"require-dir": "0.3.0",
"rxjs": "^5.0.0-beta.12",
"source-map-loader": "0.1.5",
"systemjs-builder": "0.15.17",
"ts-loader": "0.8.2",
"tslint-config-valorsoft": "1.0.3",
"tslint-microsoft-contrib": "^2.0.10",
"typescript": "2.0.10",
"typings": "0.8.1",
"webpack": "1.13.1",
"webpack-combine-loaders": "^2.0.0",
"webpack-dev-server": "1.14.1",
"zone.js": "^0.6.21"
},
"dependencies": {}
}