-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.31 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
64
65
66
67
68
69
70
71
72
73
{
"name": "promizr",
"version": "1.1.0",
"description": "ES6 Promise Extensions and utility methods + Polyfill which strictly follows ES6 specification",
"author": "Touchify <dev@touchify.co>",
"main": "dist/promizr.js",
"module": "dist/promizr.mjs",
"browser": "dist/promizr.min.js",
"types": "dist/promizr.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/spatools/promizr.git"
},
"bugs": {
"url": "https://github.com/spatools/promizr/issues"
},
"keywords": [
"promise",
"es6",
"extension",
"queue",
"javascript",
"typescript"
],
"files": [
"dist/**/*.*",
"dist/**/*.*"
],
"scripts": {
"build": "npm run clean && npm run clean:dist && npm run lint && npm run build:rollup && npm run build:docs",
"build:rollup": "rollup -c",
"build:docs": "npm run build:docs:types && npm run build:docs:extract && npm run build:docs:generate",
"build:docs:types": "tsc --declaration --emitDeclarationOnly --declarationDir temp",
"build:docs:extract": "api-extractor run --local",
"build:docs:generate": "api-documenter markdown -i ./temp -o docs",
"test": "npm run clean && npm run lint && npm run test:jest",
"test:jest": "jest",
"test:coverage": "npm run test -- -- --coverage",
"test:ci": "npm run test:coverage -- --ci",
"lint": "npm run lint:ts",
"lint:ts": "eslint --ext .ts *.ts lib/**/*.ts",
"clean": "npm run clean:ts",
"clean:ts": "rimraf index.{js,d.ts} lib/**/*.{js,d.ts} temp coverage",
"clean:dist": "rimraf dist"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@microsoft/api-documenter": "^7.9.25",
"@microsoft/api-extractor": "^7.11.2",
"@microsoft/tsdoc": "^0.12.21",
"@rollup/plugin-typescript": "^6.1.0",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"husky": "^4.3.0",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"rollup": "^2.33.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}