-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.12 KB
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
{
"name": "interval_booster",
"version": "20.11.28i117",
"description": "template for trgkanki's addon",
"scripts": {
"postinstall": "python3 -m pip install -r requirements.txt",
"compile": "",
"build": "npm run compile && npx trgkanki-template-cli package",
"update:template": "npx trgkanki-template-cli update",
"link": "npx trgkanki-template-cli link",
"dist": "npx trgkanki-template-cli release",
"test": "npm-run-all test:py",
"test:py": "python3 -m nose src/tests"
},
"keywords": [
"anki",
"anki-addon"
],
"author": "trgk",
"license": "AGPL3",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"git-branch-is": "^4.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"npm-run-all": "^4.1.5",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"husky": {
"hooks": {
"pre-commit": "git-branch-is --not master && lint-staged"
}
},
"dependencies": {}
}