-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
45 lines (45 loc) · 1.37 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": "gd-bmp",
"version": "2.0.1",
"description": "light and high speed and 100% js implement graphical library, it can running in any platform",
"main": "dist/BMP24.js",
"typings": "dist/BMP24.d.ts",
"files": [
"dist/*"
],
"scripts": {
"compile": "rm -rf dist && tsc",
"lint": "eslint --fix ./src/**/*.ts",
"test": "npm run compile && node ./dist/demo/filter",
"test2": "npm run compile && node ./dist/demo/test",
"prepublish": "npm run lint && npm run compile"
},
"keywords": [
"gd",
"bmp"
],
"author": "zengming",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zengming00/node-gd-bmp.git"
},
"bugs": {
"url": "https://github.com/zengming00/node-gd-bmp/issues"
},
"homepage": "https://github.com/zengming00/node-gd-bmp#readme",
"dependencies": {
"@types/node": "^14.14.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.12.0",
"eslint-config-standard": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"typescript": "^4.0.3"
}
}