-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.95 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
67
68
69
70
71
72
73
74
75
76
{
"name": "@musement/iso-duration",
"version": "1.0.0",
"description": "",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"test": "jest",
"clean_dist": "rimraf dist/*",
"prebuild": "npm run clean_dist",
"build": "rollup --config build/rollup.config.js",
"watch": "rollup --config build/rollup.config.js --watch",
"typeCheck": "tsc --noEmit",
"lint": "tsc --noEmit && eslint . --ext .ts,.js",
"prerelease": "npm run build && git add dist/",
"release": "standard-version --commit-all",
"develop": "node ./develop/testing_enviroment.js"
},
"files": [
"dist"
],
"author": "Musement",
"contributors": [
"Przemysław Fałowski <[email protected]>",
"Marco Ziliani <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/musement/iso-duration.git"
},
"bugs": {
"url": "https://github.com/musement/iso-duration/issues"
},
"keywords": [
"iso",
"duration",
"iso8601",
"humanize",
"time"
],
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^11.0.0",
"@musement/eslint-plugin": "^1.0.0",
"@types/jest": "^25.1.0",
"babel-jest": "^25.1.0",
"eslint": "^7.19.0",
"husky": "^8.0.3",
"jest": "^25.1.0",
"lint-staged": "^13.2.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.1.0",
"rollup-plugin-analyzer": "^3.2.2",
"rollup-plugin-typescript2": "^0.26.0",
"standard-version": "^9.0.0",
"ts-jest": "^25.5.1",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run typeCheck && npm run test"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"git add"
]
}
}