forked from Robert-Fairley/apple-news-format
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.47 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
{
"name": "@wanews/apple-news-format",
"version": "2.0.3",
"description": "Types for Apple News Format, including a small selection of string validation functions",
"main": "lib",
"files": [
"lib"
],
"scripts": {
"build": "./node_modules/.bin/tsc",
"test": "./node_modules/.bin/ts-mocha ./tests/**/*.test.ts",
"lint": "./node_modules/.bin/tslint ./src/**/*.ts",
"prepublish": "npm run lint && npm test",
"prepublishOnly": "npm run build",
"clean": "rm -rf lib",
"release": "changeset publish && git push --tags"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run lint && npm test",
"pre-push": "npm run lint && npm test"
}
},
"repository": {
"type": "git",
"url": "https://github.com/sevenwestmedia-labs/apple-news-format.git"
},
"homepage": "https://github.com/sevenwestmedia-labs/apple-news-format#readme",
"keywords": [
"apple news",
"apple-news",
"format",
"apple news format",
"news format",
"types",
"@types",
"typings",
"ts",
"typescript"
],
"author": {
"name": "Robert Fairley"
},
"license": "MIT",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^16.11.11",
"chai": "^4.2.0",
"husky": "^1.3.1",
"mocha": "^9.2.2",
"ts-mocha": "^9.0.2",
"tslint": "^5.16.0",
"typescript": "^4.5.2"
}
}