-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
71 lines (71 loc) · 2.27 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
{
"name": "@speedy/build-tools",
"version": "0.8.1",
"description": "Node CLI/API for build tools and utilities such as linting (html, sass, ts), clean, compile, etc... in order to simplify building libraries and applications.",
"main": "./dist/index.js",
"bin": {
"speedy-build-tools": "./bin/speedy-build-tools.js",
"speedy": "./bin/speedy-build-tools.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alan-agius4/speedy-build-tools.git"
},
"keywords": [
"node",
"build",
"scripts",
"tools",
"cli",
"api"
],
"author": "Alan Agius",
"license": "ISC",
"bugs": {
"url": "https://github.com/alan-agius4/speedy-build-tools/issues"
},
"homepage": "https://github.com/alan-agius4/speedy-build-tools#readme",
"scripts": {
"prebuild": "npm run lint & npm run clean",
"build": "tsc -p tsconfig.build.json",
"test": "npm run clean && tsc -p tsconfig.test.json && jasmine JASMINE_CONFIG_PATH=jasmine.json",
"clean": "rimraf ./dist & rimraf ./test",
"lint": "tslint -c tslint.json ./src/**/*.ts --format stylish -p tsconfig.json",
"watch": "npm run clean && tsc -p tsconfig.build.json -w",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"preversion": "npm test",
"version": "npm run build && npm run changelog",
"postversion": "git commit --all -m \"chore(all): update for release\" && git push && git push --tags",
"release": "npm publish"
},
"dependencies": {
"@speedy/node-core": "^1.5.0",
"@speedy/require-cache": "^1.2.0",
"@types/htmlhint": "^0.9.1",
"@types/stylelint": "^9.0.0",
"@types/yargs": "^15.0.0",
"chalk": "^2.2.0",
"htmlhint": "^0.10.0",
"lodash": "^4.17.4",
"rimraf": "^3.0.0",
"stylelint": "^12.0.0",
"stylelint-scss": "^3.0.1",
"tslint": "^5.0.0",
"yargs": "^15.0.0"
},
"devDependencies": {
"@speedy/commit-msg-hook": "^1.3.0",
"@types/cpx": "^1.5.0",
"@types/jasmine": "^3.0.0",
"@types/lodash": "^4.14.51",
"@types/mock-fs": "^4.0.0",
"@types/node": "^10.0.0",
"@types/rimraf": "^2.0.2",
"conventional-changelog-cli": "^2.0.0",
"cpx": "^1.5.0",
"jasmine": "^3.0.0",
"mock-fs": "^4.1.0",
"typescript": "~2.8.1"
},
"typings": "dist/index.d.ts"
}