-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.67 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
{
"name": "@speedy/json-extends",
"version": "1.2.0",
"description": "Extend a JSON file with one or many existing files.",
"main": "./dist/json.js",
"repository": {
"type": "git",
"url": "git+https://github.com/alan-agius4/speedy-json-extends.git"
},
"keywords": [
"json",
"extend",
"extends",
"node"
],
"author": "Alan Agius",
"license": "ISC",
"bugs": {
"url": "https://github.com/alan-agius4/speedy-json-extends/issues"
},
"homepage": "https://github.com/alan-agius4/speedy-json-extends#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",
"watch": "npm run clean && tsc -p tsconfig.build.json -w",
"changelog": "./node_modules/.bin/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": {
"lodash": "^4.17.4"
},
"devDependencies": {
"@speedy/commit-msg-hook": "^1.3.0",
"@types/jasmine": "^2.5.41",
"@types/lodash": "^4.14.51",
"@types/mock-fs": "^3.6.30",
"@types/node": "^10.0.0",
"conventional-changelog-cli": "^2.0.0",
"jasmine": "^3.0.0",
"mock-fs": "^4.1.0",
"rimraf": "^2.6.0",
"tslint": "^5.0.0",
"typescript": "^2.2.1"
},
"typings": "dist/json.d.ts"
}