UNPKG

2.17 kBJSONView Raw
1{
2 "name": "@speedy/build-tools",
3 "version": "0.1.0",
4 "description": "Node CLI and API to build your application and library...",
5 "main": "./dist/index.js",
6 "bin": {
7 "speedy-build-tools": "./bin/speedy-build-tools.js",
8 "speedy": "./bin/speedy-build-tools.js"
9 },
10 "repository": {
11 "type": "git",
12 "url": "git+https://github.com/alan-agius4/speedy-build-tools.git"
13 },
14 "keywords": [
15 "node",
16 "build",
17 "scripts",
18 "tools",
19 "cli",
20 "api"
21 ],
22 "author": "Alan Agius",
23 "license": "ISC",
24 "bugs": {
25 "url": "https://github.com/alan-agius4/speedy-build-tools/issues"
26 },
27 "homepage": "https://github.com/alan-agius4/speedy-build-tools#readme",
28 "scripts": {
29 "prebuild": "npm run lint & npm run clean",
30 "build": "tsc -p tsconfig.build.json",
31 "test": "npm run clean && tsc -p tsconfig.test.json && jasmine JASMINE_CONFIG_PATH=jasmine.json",
32 "clean": "rimraf ./dist & rimraf ./test",
33 "lint": "tslint -c tslint.json ./src/**/*.ts --format stylish",
34 "watch": "npm run clean && tsc -p tsconfig.build.json -w",
35 "changelog": "./node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -s",
36 "preversion": "npm test",
37 "version": "npm run build && npm run changelog",
38 "postversion": "git commit --all -m 'chore(all): update for release' && git push && git push --tags"
39 },
40 "dependencies": {
41 "chalk": "^1.1.3",
42 "fast-glob": "^1.0.0",
43 "htmlhint": "^0.9.13",
44 "lodash": "^4.17.4",
45 "path": "^0.12.7",
46 "postcss": "^5.2.15",
47 "rimraf": "^2.6.0",
48 "stylefmt": "^5.3.0",
49 "stylelint": "^7.9.0",
50 "stylelint-scss": "^1.4.3",
51 "tslint": "^4.5.1",
52 "yargs": "^7.0.1"
53 },
54 "devDependencies": {
55 "@types/chalk": "^0.4.31",
56 "@types/htmlhint": "^0.9.0",
57 "@types/jasmine": "^2.5.41",
58 "@types/lodash": "^4.14.51",
59 "@types/mock-fs": "^3.6.30",
60 "@types/node": "^7.0.5",
61 "@types/rimraf": "^0.0.28",
62 "@types/stylelint": "^7.9.0",
63 "@types/yargs": "^6.6.0",
64 "conventional-changelog-cli": "^1.3.1",
65 "jasmine": "^2.5.3",
66 "mock-fs": "^4.1.0",
67 "typescript": "~2.1.6"
68 },
69 "typings": "dist/index.d.ts"
70}