-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.57 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
{
"name": "jaasync",
"version": "0.13.1",
"description": "Just another async utility library",
"main": "lib/index.js",
"types": "lib/index.d.js",
"scripts": {
"dev": "./node_modules/.bin/tsc -p tsconfig.dev.json",
"dist": "./node_modules/.bin/tsc -p tsconfig.dist.json",
"lint": "eslint .",
"test": "npm run dev && node --expose-gc ./node_modules/.bin/jasmine lib/*_spec.js",
"validate": "npm run test && npm run lint",
"install": "([ -d ./src ] && [ ! -d ./lib ] && mkdir lib && npm install . && npm run dist) || echo ''",
"prepublish": "rm -rf ./lib && npm run dist",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"async",
"promise",
"future",
"utilities",
"await"
],
"author": "Ethan Ferrari <[email protected]>",
"contributors": [
"Kurt Preston <[email protected]>"
],
"repository": "https://github.com/epferrari/jaasync",
"license": "MIT",
"dependencies": {
"core-decorators": "^0.20.0"
},
"devDependencies": {
"@types/bytes": "^3.1.1",
"@types/jasmine": "^3.5.14",
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/eslint-plugin-tslint": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"bytes": "^3.1.2",
"eslint": "^8.17.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unicorn": "^42.0.0",
"jasmine": "^3.99.0",
"typedoc": "^0.22",
"typescript": "^4.7.3"
}
}