forked from seveves/angular-vis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 4.1 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
{
"name": "ng2-vis",
"version": "0.0.4",
"main": "ng2-vis.js",
"typings": "ng2-vis.d.ts",
"description": "Angular 2 components for using vis.js",
"repository": {
"type": "git",
"url": "git+https://github.com/seveves/ng2-vis.git"
},
"keywords": [
"angular2",
"ng2",
"vis",
"angular2-vis",
"ng2-vis"
],
"author": "Severin Friede <seveves>",
"license": "MIT",
"bugs": {
"url": "https://github.com/seveves/ng2-vis/issues"
},
"homepage": "https://github.com/seveves/ng2-vis#readme",
"scripts": {
"flow.compile": "npm run flow.compile:common && npm run flow.compile:system && npm run flow.extract-metadata",
"flow.compile:typings": "./node_modules/.bin/typings install",
"flow.compile:tsc": "./node_modules/.bin/tsc -p tsconfig.publish.json",
"flow.compile:common": "npm run flow.compile:typings && npm run flow.copy:typings && npm run flow.compile:tsc",
"flow.compile:system": "node ./.config/bundle-system.js",
"flow.copy:src": "./node_modules/.bin/cpy ng2-vis.ts \"components/*.ts\" ts --parents",
"flow.copy:typings": "./node_modules/.bin/cpy \"typings/globals/vs/**/*\" \"lib/vs\"",
"flow.clean": "./node_modules/.bin/rimraf bundles coverage demo-build \"components/**/*.+(metadata.json|js|d.ts|js.map)\" dist \"ng2-vis.+(js|d.ts|js.map)\"",
"flow.eslint": "./node_modules/.bin/eslint --ignore-path .gitignore --ext js --fix . .config",
"flow.extract-metadata": "./node_modules/.bin/ngc -p tsconfig.publish.json",
"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_modules/.bin/cross-env NODE_ENV=production ./node_modules/.bin/webpack --progress --color --display-error-details --display-cached",
"flow.build:dev": "./node_modules/.bin/webpack --progress --color",
"flow.serve:dev": "./node_modules/.bin/webpack-dev-server --hot --inline --colors --display-error-details --display-cached",
"flow.serve:prod": "./node_modules/.bin/cross-env NODE_ENV=production ./node_modules/.bin/webpack-dev-server --hot --inline --colors --display-error-details --display-cached",
"prepublish": "npm run flow.clean && npm run flow.compile",
"start": "npm run flow.serve:dev",
"pretest": "npm run flow.lint",
"test": "./node_modules/.bin/cross-env NODE_ENV=test ./node_modules/.bin/karma start",
"test:watch": "./node_modules/.bin/cross-env NODE_ENV=test ./node_modules/.bin/karma start --auto-watch --no-single-run",
"preversion": "npm test",
"version": "npm run flow.changelog && git add -A",
"postversion": "git push origin master && git push --tags"
},
"dependencies": {
"vis": "^4.17.0"
},
"peerDependencies": {
"@angular/common": "^2.2.4",
"@angular/core": "^2.2.4",
"@angular/compiler": "^2.2.4",
"@angular/forms": "^2.2.4",
"@angular/router": "^3.2.4"
},
"devDependencies": {
"@angular/common": "^2.2.4",
"@angular/compiler": "^2.2.4",
"@angular/compiler-cli": "^2.2.4",
"@angular/core": "^2.2.4",
"@angular/forms": "^2.2.4",
"@angular/platform-browser": "^2.2.4",
"@angular/platform-browser-dynamic": "^2.2.4",
"@angular/platform-server": "^2.2.4",
"@angular/router": "^3.2.4",
"@types/jasmine": "^2.5.38",
"@types/node": "6.0.45",
"@types/webpack": "1.12.35",
"codecov": "1.0.1",
"conventional-changelog-cli": "1.2.0",
"conventional-github-releaser": "1.1.3",
"cpy-cli": "1.0.1",
"cross-env": "^3.1.3",
"es6-promise": "4.0.5",
"es6-shim": "^0.35.2",
"gitignore-to-glob": "^0.3.0",
"gulp": "3.9.1",
"gulp-tslint": "^7.0.1",
"ng2-webpack-config": "0.0.5",
"pre-commit": "1.1.3",
"reflect-metadata": "0.1.8",
"require-dir": "0.3.1",
"rimraf": "^2.5.4",
"rxjs": "5.0.0-beta.12",
"systemjs-builder": "^0.15.34",
"tslint": "^4.0.2",
"typescript": "^2.0.10",
"typings": "^2.0.0",
"zone.js": "^0.7.2"
}
}