-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "@mapado/image-url-builder",
"private": false,
"version": "2.1.1",
"description": "Build mapado image in JS",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "yarn lint:types && yarn lint:eslint",
"lint:types": "tsc --noEmit",
"lint:eslint": "eslint --quiet src/"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mapado/image-url-builder-js.git"
},
"author": "Julien Deniau",
"homepage": "https://github.com/mapado/image-url-builder-js",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"jest": "^27.0.5",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"bugs": {
"url": "https://github.com/mapado/image-url-builder-js/issues"
},
"license": "MIT"
}