-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.33 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
{
"name": "@covalent/tools",
"version": "2.0.1",
"description": "Tooling, Scripts, and CLI for Covalent Applications",
"keywords": [
"angular",
"covalent",
"cli",
"scripts"
],
"bin": {
"cov": "./bin/covalent.js",
"covalent": "./bin/covalent.js"
},
"scripts": {
"lint": "./node_modules/.bin/tslint --format codeFrame -c ./tslint.json \"./src/**/*.ts\"",
"build:watch": "npm run build:release -- -w",
"build:release": "rm -rf ./bin && tsc --outDir bin",
"publish:npm": "npm run build:release && bash scripts/npm-publish",
"release:start": "bash scripts/start-release",
"release:finish": "bash scripts/finish-release",
"generate:changelog": "./node_modules/.bin/conventional-changelog -i docs/CHANGELOG.md -s -p angular",
"prettier": "./node_modules/.bin/prettier --write './**/*.{ts,js,json,css,scss,html,yml,md}'",
"prettier:check": "./node_modules/.bin/prettier --check './**/*.{ts,js,json,css,scss,html,yml,md}'"
},
"engines": {
"node": ">=8.9.4",
"npm": ">=5"
},
"repository": {
"type": "git",
"url": "https://github.com/teradata/covalent-tools.git"
},
"bugs": {
"url": "https://github.com/teradata/covalent-tools/issues"
},
"license": "MIT",
"author": "Teradata UX",
"dependencies": {
"colors": "^1.3.0",
"node-emoji": "^1.8.1"
},
"devDependencies": {
"@covalent/coding-standards": "git+https://github.com/Teradata/covalent-coding-standards-nightly.git",
"@types/node": "^8.0.53",
"@types/node-emoji": "^1.8.0",
"autoprefixer": "7.1.2",
"commander": "^2.14.1",
"conventional-changelog-cli": "^2.0.12",
"gulp": "^4.0.0",
"gulp-bump": "2.1.0",
"gulp-help": "1.6.1",
"jasmine-core": "~2.5.2",
"karma": "^4.0.0",
"karma-chrome-launcher": "~2.0.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.3.0",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.4",
"node-sass": "^4.11.0",
"phantomjs-prebuilt": "^2.1.16",
"protractor": "^5.4.2",
"require-dir": "0.3.2",
"rimraf": "^2.6.2",
"semver": "5.2.0",
"ts-node": "^3.0.4",
"typescript": "~2.7.2",
"uglify-js": "^2.8.14",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-stats-plugin": "^0.1.5"
}
}