-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "anki-canvas",
"version": "0.0.1",
"description": "JavaScript widget providing touch enabled canvas for drawing in AnkiDroid",
"main": "index.js",
"repository": "https://github.com/pigoz/anki-canvas",
"author": "pigoz",
"license": "MIT",
"dependencies": {
"@types/hyperscript": "^0.0.3",
"hyperscript": "^2.0.2"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.1",
"chalk": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.7.1",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"scripts": {
"test": "jest",
"start": "yarn webpack-dev-server",
"build": "yarn webpack",
"dist": "yarn build && yarn ts-node scripts/dist.ts",
"release": "rm -r dist && yarn build && cd scripts && ./release.py"
},
"jest": {
"globals": {
"ts-jest": {
"skipBabel": true,
"mapCoverage": true
}
},
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "/test/.*\\.test\\.ts$"
}
}