-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "news-sources",
"version": "0.1.12",
"description": "json news-sources",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"scripts": {
"pretest": "npm run clean && npm run tsc",
"test": "ava --no-cache --verbose lib/**/*.test.js",
"posttest": "npm run clean-code",
"tsc": "tsc",
"tscw": "tsc -w",
"preversion": "npm run tsc",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run tsc && npm run clean-code",
"clean": "rimraf ./lib && rimraf ./types",
"clean-code": "rimraf ./lib/**/*.test.js && rimraf ./types/**/*.test.d.ts && rimraf ./types/scripts",
"validate": "node ./lib/scripts/validate.js"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ournet/news-sources.git"
},
"keywords": [
"news",
"sources",
"json",
"news-sources"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://github.com/ournet/news-sources/issues"
},
"homepage": "https://github.com/ournet/news-sources#readme",
"devDependencies": {
"@types/node": "^10.5.3",
"ajv": "^6.5.2",
"ava": "^0.25.0",
"rimraf": "^2.6.2",
"typescript": "latest"
}
}