-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "integreat-adapter-json",
"version": "1.0.1",
"description": "JSON adapter for Integreat",
"author": "Kjell-Morten Bratsberg Thorsen <[email protected]> (https://integreat.io/)",
"license": "ISC",
"keywords": [
"json",
"integreat"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./transformer.js": {
"import": "./dist/transformer.js",
"types": "./dist/transformer.d.ts"
}
},
"scripts": {
"test": "c8 --reporter=text-summary ava --config ./ava-dist.config.cjs",
"test:inspect": "node --inspect node_modules/ava/profile.js",
"test:watch": "npm run dev",
"dev": "ava --watch",
"build": "tsc",
"prepublish": "npm run build",
"coverage": "c8 report",
"lint": "eslint --ext .ts src",
"verify": "npm run lint && npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/integreat-io/integreat-adapter-json.git"
},
"bugs": {
"url": "https://github.com/integreat-io/integreat-adapter-json/issues"
},
"homepage": "https://github.com/integreat-io/integreat-adapter-json#readme",
"engines": {
"node": ">= 18"
},
"dependencies": {},
"devDependencies": {
"@integreat/ts-dev-setup": "^5.0.3",
"@types/sinon": "^17.0.1",
"integreat": "^1.4.6",
"nock": "^13.3.8",
"sinon": "^17.0.1"
}
}