-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.22 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
{
"name": "futurejs",
"version": "2.2.1-pre",
"description": "Promise-alternative library for doing asynchronous operations",
"repository": "https://github.com/IronCoreLabs/futurejs",
"author": "IronCore Labs",
"license": "MIT",
"main": "Future.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"test": "tsc --noEmit && yarn run lint && yarn run unit",
"unit": "jest --coverage",
"build": "tsc -d --lib es5,es2015.promise Future.ts && mv Future.d.ts index.d.ts"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.3.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^26.6.0",
"jest-extended": "^0.11.5",
"ts-jest": "^26.4.4",
"typescript": "^4.2.4"
},
"prettier": {
"printWidth": 160,
"tabWidth": 4,
"trailingComma": "es5",
"bracketSpacing": false,
"jsxBracketSameLine": true,
"arrowParens": "always"
},
"dependencies": {}
}