-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "canvas_ruler",
"version": "0.1.2",
"description": "a simple canvas ruler",
"source": "src/main.ts",
"main": "dist/ruler.js",
"module": "dist/ruler.module.js",
"unpkg": "dist/ruler.umd.js",
"files": [
"dist",
"src",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix --ext .js --ext .ts ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lovefengruoqing/canvas_ruler.git"
},
"keywords": [
"canvas",
"ruler"
],
"author": "lovefengruoqing",
"license": "MIT",
"bugs": {
"url": "https://github.com/lovefengruoqing/canvas_ruler/issues"
},
"homepage": "https://github.com/lovefengruoqing/canvas_ruler#readme",
"typings": "dist/src/main.d.ts",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"microbundle": "^0.12.0"
}
}