-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "fnctnl",
"version": "1.0.1",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Andrew Moss <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest --config jest.config.json",
"start": "tsc --watch",
"build": "tsc",
"prepare": "yarn run build",
"prepublishOnly": "yarn run pkg-ok && yarn run lint",
"preversion": "yarn run lint",
"version": "yarn run lint && git add -A src",
"postversion": "git push && git push --tags",
"pkg-ok": "pkg-ok",
"lint": "eslint src --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agmoss/fnctnl.git"
},
"bugs": {
"url": "https://github.com/agmoss/fnctnl/issues"
},
"homepage": "https://github.com/agmoss/fnctnl#readme",
"keywords": [
"typescript",
"functional",
"either"
],
"devDependencies": {
"@types/jest": "^26.0.3",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "^7.3.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.1.0",
"pkg-ok": "^2.3.1",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5"
}
}