-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.85 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
66
{
"name": "polyfull",
"version": "0.18.9",
"description": "supercharge javascript applications",
"main": "dist/index.js",
"private": false,
"prettier": "@giovannicardamone/prettier-config",
"eslintConfig": {
"extends": "@giovannicardamone/eslint-config"
},
"scripts": {
"test": "ts-mocha 'tests/**.test.ts'",
"cover": "nyc npm test",
"lint": "eslint",
"build": "tsc",
"build:watch": "tsc --watch",
"docs": "npm run docs:readme && npm run docs:typedoc",
"docs:readme": "ts-node scripts/update-readme < README.md | sponge README.md",
"docs:typedoc": "typedoc",
"prepublishOnly": "npm run lint && npm test && npm run build",
"prepare": "husky install"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GiovanniCardamone/polyfull.git"
},
"keywords": [
"node",
"nodejs",
"javascript",
"typescript",
"polyfill"
],
"author": "Giovanni Cardamone <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/GiovanniCardamone/polyfull/issues"
},
"homepage": "https://github.com/GiovanniCardamone/polyfull#readme",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@giovannicardamone/eslint-config": "^0.5.0",
"@giovannicardamone/prettier-config": "^0.1.3",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.8",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"commitlint": "^13.1.0",
"eslint": "^7.32.0",
"glob-promise": "^4.2.0",
"husky": "^7.0.1",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"ts-mocha": "^8.0.0",
"ts-node": "^7.0.1",
"typedoc": "^0.21.9",
"typescript": "^4.3.5"
}
}