-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 922 Bytes
/
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
{
"name": "@quartz/js-utils",
"version": "2.0.0",
"description": "A collection of reusable JavaScript utilities for Quartz products.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"test": "npm run test:eslint && npm run test:unit",
"test:eslint": "eslint --ignore-path .gitignore src",
"test:unit": "jest",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quartz/js-utils.git"
},
"author": "Quartz",
"license": "ISC",
"bugs": {
"url": "https://github.com/Quartz/js-utils/issues"
},
"homepage": "https://github.com/Quartz/js-utils#readme",
"devDependencies": {
"@quartz/eslint-config-base": "^1.6.4",
"@types/jest": "^26.0.15",
"eslint": "^7.11.0",
"jest": "^26.6.0",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
}
}