-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.11 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": "@avatao/tfwsdk",
"version": "1.0.3",
"description": "This package is part of our next-gen Tutorial Framework (which just an additional abstraction layer). The purpose of the project is to decrease the learning curve of creating tutorial exercises.",
"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",
"semantic-release": "semantic-release",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"repository": {
"url": "https://github.com/avatao-content/sdk-tfw-node"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"TFW",
"SDK"
],
"author": {
"name": "Ákos Hajba",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/avatao-content/sdk-tfw-node/issues"
},
"homepage": "https://github.com/avatao-content/sdk-tfw-node#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint && npm test"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.9",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.13",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"semantic-release": "^17.3.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"files": [
"dist/**/*"
],
"dependencies": {
"zeromq": "^6.0.0-beta.5"
}
}