-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.85 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
{
"name": "queueable-js",
"version": "1.0.9",
"description": "Simple queuing functionality with event emitter async call.",
"keywords": [
"async-queue",
"event-emitter",
"typescript",
"javascript",
"function-calls"
],
"author": "Puncoz Nepal <info@puncoz.com>",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10",
"npm": ">=6"
},
"scripts": {
"test": "jest --detectOpenHandles --forceExit --runInBand --config jest.config.json",
"test:watch": "yarn test --watch",
"clean": "rimraf dist yarn-error.log*",
"lint": "tslint -c tslint.json --project tsconfig.json 'src/**/*.{ts}'",
"lint:fix": "yarn lint --fix",
"webpack": "webpack --config ./webpack.config.js --progress",
"start": "webpack --env.NODE_ENV=development --watch",
"build": "yarn clean && yarn webpack --env.NODE_ENV=production",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"preversion": "yarn lint",
"version": "git add .",
"postversion": "git push -u upstream && git push upstream -u --tags"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/puncoz-official/queueable-js.git"
},
"bugs": {
"url": "https://github.com/puncoz-official/queueable-js/issues"
},
"homepage": "https://github.com/puncoz-official/queueable-js#readme",
"devDependencies": {
"@types/jest": "^24.0.23",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {}
}