-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.86 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "js-extra",
"version": "1.7.1",
"description": "Does what native Javascript doesn't.",
"homepage": "https://js-extra.netlify.app/",
"module": "lib/esm/index.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"sideEffects": false,
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/alexandre-lelain/js-extra"
},
"author": "Alexandre Le Lain <[email protected]>",
"contributors": [
"Vincent Lacour (https://github.com/LacourVincent)",
"Gautier Darchen (https://github.com/gdarchen)",
"Romain Judic (https://github.com/romainjudic)"
],
"license": "MIT",
"keywords": [
"Javascript",
"functions",
"helpers"
],
"scripts": {
"build": "rimraf lib && yarn build:esm && yarn build:cjs",
"build:esm": "tsc -m es6 --outDir lib/esm",
"build:cjs": "tsc -m commonjs --outDir lib",
"docs": "yarn docsify serve docs",
"lint": "eslint --cache src",
"prettier": "prettier --write \"src/**/*.ts\"",
"validate": "yarn lint && yarn test && yarn build",
"prepublishOnly": "yarn validate",
"preversion": "yarn validate",
"postversion": "git push && git push --tags",
"test": "jest --silent",
"version": "yarn prettier && git add -vA src"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"docsify-cli": "^4.4.2",
"eslint": "^7.20.0",
"husky": "^5.0.9",
"jest": "^26.6.3",
"marked": "^2.0.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern \"src/**/*.ts\" \"src/**/*.js\""
}
}
}