-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1014 Bytes
/
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
{
"name": "fn-compose-prototype",
"version": "1.0.2",
"main": "index.js",
"typings": "index.d.ts",
"license": "MIT",
"homepage": "https://github.com/hshiraiwa/fn-compose-prototype#readme",
"bugs": {
"url": "https://github.com/hshiraiwa/fn-compose-prototype/issues"
},
"repository": "github:hshiraiwa/fn-compose-prototype",
"devDependencies": {
"@types/jest": "^24.0.23",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"eslint": "^6.5.1",
"eslint-config-airbnb-typescript": "^5.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-security": "^1.4.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.2.0",
"typescript": "^3.6.3"
},
"dependencies": {},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint src/**/*.ts",
"test": "jest"
}
}