generated from beeman/template-typescript-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.88 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
72
{
"name": "swh-swmath-save-now-batch",
"version": "0.0.0-development",
"description": "A simple script to batch query the software heritage save now api with swMATH data",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint ./src/**/*.{js,ts,tsx}",
"test": "jest",
"test:watch": "jest --watchAll",
"build": "tsc",
"watch": "tsc -w",
"start": "npm link && nodemon",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/fairmath/SwhSaveNowBatch.git"
},
"keywords": [
"swMATH",
"Software Heritage",
"SaveNow"
],
"author": {
"name": "Moritz Schubotz",
"email": "wiki@physikerwelt.de"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fairmath/SwhSaveNowBatch/issues"
},
"homepage": "https://github.com/fairmath/SwhSaveNowBatch#readme",
"husky": {
"hooks": {
"pre-commit": "yarn lint && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "yarn lint && npm test"
}
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/cacache": "^12.0.1",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.12",
"@types/node-fetch": "^2.5.4",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"nodemon": "^2.0.1",
"prettier": "^1.19.1",
"semantic-release": "^15.13.31",
"ts-jest": "^24.2.0",
"typescript": "^3.7.2",
"yarn": "^1.19.2"
},
"files": [
"dist/**/*"
],
"dependencies": {
"cacache": "^13.0.1",
"fast-csv": "^3.4.0",
"loglevel": "^1.6.6",
"node-fetch": "^2.6.0",
"p-queue": "^6.2.1"
}
}