-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.74 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.74 KB
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
{
"name": "@falieson/js-util",
"version": "1.0.1",
"description": "Utility (array, console, date, math, string) scripts @falieson uses in most projects",
"main": "build/index.js",
"types": "build/index.d.ts",
"typings": "build/index.d.ts",
"scripts": {
"build": "npx tsc",
"build:watch": "npx tsc --watch",
"lint": "npx eslint --ext .js,.ts src/",
"lint:fix": "npx eslint --ext .js,.ts --fix src/",
"test": "node test/simple.js",
"test:smoke": "npx r2g test"
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all build lint:fix",
"pre-publish": "npm-run-all -s build -p test:smoke lint",
"pre-push": "npm-run-all -s build -p test:smoke lint"
}
},
"dependencies": {
"@falieson/js-second": "^2.0.0"
},
"devDependencies": {
"@types/core-js": "^2.5.2",
"@types/node": "^12.12.7",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"eslint": "^6.6.0",
"eslint-config-kentcdodds": "^14.6.1",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^4.0.0-beta.5",
"npm-run-all": "^4.1.5",
"prettier": "1.19.1",
"r2g": "^0.1.202",
"typescript": "^3.7.2"
},
"author": "Florian Mettetal <florian.mettetal@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/Falieson/js-util.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Falieson/js-util/issues"
},
"homepage": "https://github.com/Falieson/js-util#readme",
"keywords": [
"utility",
"array",
"console",
"date",
"math",
"string",
"javascript",
"falieson"
]
}