-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "contactjs",
"version": "2.1.7",
"description": "Pointer gestures for your webapp",
"main": "dist/index.js",
"module": "dist/contact.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/biodiv/contactjs.git"
},
"files": [
"dist"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/biodiv/contactjs/issues"
},
"homepage": "https://biodiv.github.io/contactjs/",
"scripts": {
"build": "tsc",
"build:parcel": "parcel build",
"watch": "tsc --watch",
"watch:parcel": "parcel watch",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:strict": "eslint . --max-warnings=0"
},
"devDependencies": {
"@parcel/packager-ts": "^2.7.0",
"@parcel/transformer-typescript-types": "^2.7.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"parcel": "^2.7.0",
"typescript": "^4.8.3"
},
"targets": {
"main": {
"optimize": true
}
}
}