-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1021 Bytes
/
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
{
"name": "ac-designs",
"description": "Animal Crossing QR code generator/parser",
"version": "0.4.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"lint": "eslint */**/*.{js,ts,tsx} --quiet --fix",
"test": "jest",
"prepare": "yarn clean && yarn build",
"prepublishOnly": "yarn lint && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misenhower/ac-designs.git"
},
"license": "MIT",
"files": [
"dist"
],
"dependencies": {
"canvas": "^2.6.1",
"qrcode": "ssh://git@github.com:misenhower/node-qrcode.git#structured-append"
},
"devDependencies": {
"@types/jest": "^25.1.5",
"@types/qrcode": "^1.3.4",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"jest": "^25.2.6",
"rimraf": "^3.0.2",
"tmp-promise": "^2.0.2",
"ts-jest": "^25.3.0",
"typescript": "^3.8.3"
}
}