generated from TheRealBarenziah/imgbb-uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.97 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "commandlinefu",
"version": "0.0.6",
"description": "Easily use commandlinefu.com API with nodejs",
"main": "lib/cjs/index.js",
"browser": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"axios": "^0.21.1"
},
"scripts": {
"test": "jest --config jestconfig.json",
"build": "node rebuild.js && node updateExport.js es5 && tsc -p tsconfig-cjs.json && node updateExport.js es6",
"build:cjs": "node rebuild.js && tsc -p tsconfig-cjs.json",
"build:esm": "node rebuild.js && tsc -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"pretty-quick": "pretty-quick"
},
"files": [
"lib/**/*"
],
"devDependencies": {
"@babel/types": "^7.11.0",
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.9",
"@types/node": "^14.6.2",
"dotenv": "^8.2.0",
"eslint-plugin-import": "^2.22.0",
"export-helper": "^0.1.1",
"husky": "^4.2.5",
"jest": "^26.4.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheRealBarenziah/commandlinefu.git"
},
"keywords": [
"commandlinefu",
"node",
"commandlinefu api"
],
"author": "TheRealBarenziah",
"license": "SEE LICENSE IN TARGARYEN_UNLICENSE",
"bugs": {
"url": "https://github.com/TheRealBarenziah/commandlinefu/issues"
},
"homepage": "https://github.com/TheRealBarenziah/commandlinefu#readme",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}