-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 963 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
40
41
42
43
44
{
"name": "@gucheen/rect-restrict",
"version": "1.0.1",
"description": "to restrict your target to some areas(rectangle)",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"test": "nyc --reporter=lcov ava",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"keywords": [
"rect",
"rectangle",
"restrict",
"position"
],
"homepage": "https://github.com/gucheen/rect-restrict#readme",
"author": "Cheng Gu <guchengf@gmail.com> (https://www.guchengf.me)",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.11.2",
"ava": "^3.13.0",
"gts": "^3.0.2",
"nyc": "^15.1.0",
"typescript": "^4.0.3"
},
"ava": {
"files": [
"test/**/*"
]
},
"publishConfig": {
"access": "public"
}
}