This repository was archived by the owner on Dec 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.57 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.57 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
75
76
77
{
"name": "nglineup",
"description": "LineUp is an interactive technique designed to create, visualize and explore rankings of items based on a set of heterogeneous attributes.",
"homepage": "https://github.com/datavisyn/nglineup",
"version": "1.0.7",
"author": {
"name": "Samuel Gratzl",
"email": "[email protected]",
"url": "https://www.sgratzl.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/datavisyn/nglineup/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/datavisyn/nglineup.git"
},
"scripts": {
"clean": "rimraf build dist",
"ng": "ng",
"start": "ng serve nglineup",
"build:dev": "ng build",
"build:prod": "ng build --prod",
"prebuild": "npm test",
"build": "npm run build:prod",
"test": "ng test",
"posttest": "npm run lint",
"lint": "ng lint",
"preversion": "npm test",
"postversion": "npm run build:prod",
"release:major": "npm version major && cd dist/nglineup && npm publish && cd .. && git push --follow-tags",
"release:minor": "npm version minor && cd dist/nglineup && npm publish && cd .. && git push --follow-tags",
"release:patch": "npm version patch && cd dist/nglineup && npm publish && cd .. && git push --follow-tags",
"release:pre": "npm version prerelease && cd dist/nglineup && npm publish --tag=next && cd .. && git push --follow-tags"
},
"peerDependencies": {
"@angular/common": "^6.1.10",
"@angular/core": "^6.1.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.8.5",
"@angular-devkit/build-ng-packagr": "~0.8.5",
"@angular/cli": "^6.2.5",
"@angular/common": "^6.1.10",
"@angular/compiler": "^6.1.10",
"@angular/compiler-cli": "^6.1.10",
"@angular/core": "^6.1.10",
"@angular/language-service": "^6.1.10",
"@angular/platform-browser": "^6.1.10",
"@angular/platform-browser-dynamic": "^6.1.10",
"@types/jasmine": "~2.8.9",
"@types/jasminewd2": "~2.0.5",
"@types/node": "~10.11.7",
"codelyzer": "~4.5.0",
"core-js": "^2.5.7",
"jasmine-core": "~3.2.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~3.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.4",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^1.3.1",
"ng-packagr": "^4.3.1",
"protractor": "~5.4.1",
"rxjs": "^6.3.3",
"ts-node": "~7.0.1",
"tsickle": ">=0.33.0",
"tslib": "^1.9.3",
"tslint": "~5.11.0",
"typescript": "^2.9.1",
"zone.js": "^0.8.26"
},
"dependencies": {
"lineupjs": "~3.1.7"
}
}