forked from bleenco/abstruse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.82 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.82 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "abstruse",
"version": "1.5.6",
"description": "Abstruse CI",
"bin": {
"abstruse": "./dist/api/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bleenco/abstruse.git"
},
"keywords": [
"abstruse",
"ci",
"continuous integration",
"test integration",
"test automation",
"ci integration"
],
"author": "Bleenco OSS Team <oss@bleenco.com>",
"bugs": {
"url": "https://github.com/bleenco/abstruse/issues"
},
"homepage": "https://github.com/bleenco/abstruse#readme",
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"ng": "ng",
"build": "webpack --config webpack.api.js",
"dev": "tsc-watch -p src/tsconfig.api.json --onSuccess \"node ./dist/api/index.js\"",
"start": "ng serve",
"build:app": "ng build --prod --output-path dist/app",
"test": "node ./tests/run_unit.js",
"test:karma": "ng test",
"test:e2e": "node ./tests/run_e2e.js",
"lint": "tslint ./src/api/**/*.ts",
"test:protractor": "node ./tests/run_protractor.js",
"preprotractor:ci": "npm run webdriver",
"protractor:ci": "protractor ./protractor.conf.js",
"build-image": "IMAGE_NAME=bleenco/abstruse:${npm_package_version}-dev DOCKER_TAG=${npm_package_version}-dev SOURCE_COMMIT=`git rev-parse HEAD` hooks/build",
"prebuild:prod": "npm run clean",
"build:prod": "npm run build && npm run build:app",
"prepublishOnly": "npm run build:prod",
"webdriver": "npm run webdriver:update -- --standalone",
"webdriver:update": "npm run webdriver-manager update",
"webdriver-manager": "webdriver-manager",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"dependencies": {
"@angular/animations": "^5.2.9",
"@angular/common": "^5.2.9",
"@angular/compiler": "^5.2.9",
"@angular/core": "^5.2.9",
"@angular/forms": "^5.2.9",
"@angular/http": "^5.2.9",
"@angular/platform-browser": "^5.2.9",
"@angular/platform-browser-dynamic": "^5.2.9",
"@angular/router": "^5.2.9",
"bcrypt": "^2.0.0",
"core-js": "^2.5.4",
"dockerode": "^2.5.4",
"knex": "^0.13.0",
"rsa-compat": "^1.3.2",
"rxjs": "^5.5.8",
"sqlite3": "^4.0.0",
"uws": "^9.14.0",
"zone.js": "^0.8.23"
},
"devDependencies": {
"@angular/cli": "~1.7.3",
"@angular/compiler-cli": "^5.2.9",
"@angular/language-service": "^5.2.9",
"@auth0/angular-jwt": "^1.1.0",
"@types/bcrypt": "^1.0.0",
"@types/bookshelf": "^0.9.8",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.1",
"ansi_up": "2.0.2",
"bookshelf": "^0.13.3",
"bookshelf-json-columns": "^2.1.1",
"bulma": "^0.6.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chalk": "^2.3.2",
"clipboard": "^2.0.0",
"codelyzer": "^4.2.1",
"connect-sqlite3": "^0.9.10",
"cors": "^2.8.4",
"d3": "^5.0.0",
"date-fns": "^1.29.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"jasmine-core": "~3.1.0",
"jasmine-spec-reporter": "~4.2.1",
"js-yaml": "^3.11.0",
"jsonwebtoken": "^8.2.0",
"karma": "~2.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "^1.4.2",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^1.0.0",
"minimist": "^1.2.0",
"mocha": "^5.0.5",
"monaco-editor": "^0.11.1",
"multer": "^1.3.0",
"ng2-datepicker": "^2.2.5",
"ngx-uploader": "^4.2.4",
"node-rsa": "^0.4.2",
"protractor": "~5.3.0",
"request": "^2.85.0",
"rimraf": "^2.6.2",
"strip-ansi": "^4.0.0",
"temp": "^0.8.3",
"tree-kill": "^1.2.0",
"ts-loader": "^3.5.0",
"ts-node": "~5.0.1",
"tsc-watch": "^1.0.17",
"tslint": "~5.9.1",
"typescript": "~2.5.3",
"ws": "^5.1.0",
"xterm": "^3.2.0",
"yamljs": "^0.3.0"
}
}