-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"name": "time-interval-js",
"version": "2.1.1",
"description": "A simple Time Interval class developed for working with javascript date objects and relationships between them.",
"main": "./dist/index.js",
"scripts": {
"test": "jest ../test",
"build": "tsc && cp ./package.json ./dist/package.json",
"release": "np",
"prepublishOnly": "npm run test && npm run lint:errors && npm run build",
"test-watch": "jest --watchAll=true",
"lint:errors": "eslint ./src/**/*.{ts,tsx,js} ./test/**/*.{ts,tsx,js} --quiet && tsc --noEmit -p .",
"lint:fixAll": "eslint ./src/**/*.{ts,tsx,js} --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evang522/timeinterval.git"
},
"keywords": [
"time",
"date",
"datetime",
"interval",
"hours",
"minutes",
"seconds"
],
"author": "Evan Garrett",
"license": "ISC",
"bugs": {
"url": "https://github.com/evang522/timeinterval/issues"
},
"homepage": "https://github.com/evang522/timeinterval#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"jest": "^28.1.0",
"np": "^7.6.1",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2"
},
"types": "dist/index.d.ts",
"np": {
"yarn": false,
"contents": "dist"
}
}