forked from valor-software/ng2-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.29 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
{
"name": "ng2-tree",
"version": "2.0.0-alpha.6",
"description": "angular2 component for visualizing data that can be naturally represented as a tree",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Georgii Rychko",
"email": "[email protected]"
},
"homepage": "https://github.com/valor-software/ng2-tree",
"repository": {
"type": "git",
"url": "[email protected]:valor-software/ng2-tree.git"
},
"bugs": {
"url": "https://github.com/valor-software/ng2-tree/issues"
},
"private": true,
"keywords": [
"tree",
"ng2",
"angular2",
"ng2-tree",
"branch",
"tree-view",
"branchy",
"angular2-tree-view",
"expand",
"collapse",
"recursive"
],
"scripts": {
"compile": "ngc -p tsconfig-aot.json && node umd-bundler.js",
"clean": "rimraf coverage build dist dist-demo bundles factories .publish",
"pre:publish": "npm run clean && npm run test && npm run compile && mkdir -p dist && cp -R src/styles.css README.md media dist",
"post:publish": "npm run build:demo && gh-pages -d dist-demo",
"start": "ng serve",
"build:demo": "ng build",
"test": "ng test --single-run",
"test:w": "ng test --watch",
"test:cov": "ng test --single-run --code-coverage",
"lint": "ng lint --fix --type-check",
"e2e": "ng e2e",
"changelog": "conventional-changelog -i CHANGELOG.md -s -p angular",
"github-release": "conventional-github-releaser -p angular",
"preversion": "npm run lint && npm test",
"version": "npm run changelog && git add CHANGELOG.md",
"postversion": "git push origin master && git push --tags && npm run github-release && node publish.js",
"webdriver-update": "node ./node_modules/protractor/bin/webdriver-manager update"
},
"pre-commit": [
"lint",
"test"
],
"devDependencies": {
"@angular/cli": "1.1.1",
"@angular/common": "4.1.3",
"@angular/compiler": "4.1.3",
"@angular/compiler-cli": "4.1.3",
"@angular/core": "4.1.3",
"@angular/forms": "4.1.3",
"@angular/http": "4.1.3",
"@angular/language-service": "4.1.3",
"@angular/platform-browser": "4.1.3",
"@angular/platform-browser-dynamic": "4.1.3",
"@angular/router": "4.1.3",
"@types/jasmine": "2.5.51",
"@types/node": "7.0.29",
"alertifyjs": "1.10.0",
"async": "2.4.1",
"codelyzer": "3.0.1",
"conventional-changelog": "1.1.3",
"conventional-changelog-cli": "1.3.1",
"conventional-github-releaser": "1.1.11",
"core-js": "2.4.1",
"font-awesome": "4.7.0",
"gh-pages": "1.0.0",
"jasmine-core": "2.6.3",
"jasmine-data-provider": "2.2.0",
"jasmine-spec-reporter": "4.1.0",
"karma": "1.7.0",
"karma-chrome-launcher": "2.1.1",
"karma-cli": "1.0.1",
"karma-coverage-istanbul-reporter": "1.3.0",
"karma-jasmine": "1.1.0",
"karma-jasmine-html-reporter": "0.2.2",
"karma-phantomjs-launcher": "1.0.4",
"lodash": "4.17.4",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "2.1.14",
"pre-commit": "1.2.2",
"protractor": "5.1.2",
"rimraf": "2.6.1",
"rxjs": "5.4.0",
"shelljs": "0.7.8",
"systemjs-builder": "0.16.6",
"ts-node": "3.0.6",
"tslint": "5.4.3",
"tslint-config-valorsoft": "2.0.1",
"typescript": "2.3.4",
"webpack": "2.6.1",
"zone.js": "0.8.12"
}
}