-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.63 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
{
"name": "gitlab-monitor",
"version": "1.0.0",
"description": "Gitlab Build Monitor",
"main": "index.js",
"scripts": {
"deps": "jspm install && typings --no-insight install",
"build": "rm -rf dist && npm run scss:init && npm run templates && tsc -p src",
"package": "node package-builder.js && gulp build",
"lint-ts": "tslint --config tslint.json --format verbose $(git ls-files -- '*.ts')",
"tsc:w": "tsc -p src -w",
"lite": "lite-server",
"start": "npm run build && concurrent \"npm run tsc:w\" \"npm run scss:w\" \"npm run lite\" ",
"start:webstorm": "npm run build && concurrent \"npm run lite\" \"npm run scss:w\" ",
"test": "npm run templates && karma start",
"templates": "gulp html:templates",
"test:w": "karma start --no-single-run",
"test:ci": "npm run test",
"scss:init": "node-sass src/styles/main.scss dist/styles/app.css",
"scss:w": "node-sass src/styles/main.scss dist/styles/app.css -w",
"in:docker": "sudo chown -R ${NORMAL_USER}:${NORMAL_GROUP} . && npm install && npm run deps && npm run start",
"clean": "rm -rf dist node_modules/* node_modules/.bin jspm_packages/* typings/*"
},
"repository": {
"type": "git",
"url": "[email protected]:RSCSCybersecurity/threepwood.git"
},
"author": "",
"license": "ISC",
"jspm": {
"dependencies": {
"angular": "github:angular/bower-angular@^1.5.5",
"angular-animate": "github:angular/bower-angular-animate@^1.5.0",
"angular-aria": "github:angular/bower-angular-aria@^1.5.0",
"angular-material": "github:angular/bower-material@^1.0.8",
"angular-messages": "github:angular/bower-angular-messages@^1.5.0",
"api-check": "npm:api-check@^7.5.5",
"css": "github:systemjs/plugin-css@^0.1.20",
"image": "github:systemjs/plugin-image@^0.1.0"
},
"devDependencies": {
"angular-mocks": "github:angular/bower-angular-mocks@^1.5.0",
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"clean-css": "npm:clean-css@^3.4.9",
"core-js": "npm:core-js@^1.1.4"
}
},
"devDependencies": {
"browser-sync": "2.11.1",
"concurrently": "^1.0.0",
"copyfiles": "^0.2.1",
"del": "^2.2.0",
"es6-module-loader": "^0.17.10",
"gulp": "3.9.0",
"gulp-ng-templates": "0.0.6",
"jasmine-core": "^2.4.1",
"jspm": "^0.16.26",
"karma": "^0.13.19",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.7",
"karma-systemjs": "^0.10.0",
"lite-server": "^2.0.1",
"node-sass": "^3.4.2",
"systemjs-builder": "^0.15.7",
"tslint": "^3.3.0",
"typescript": "^1.8.0",
"typings": "^0.8.1"
}
}