-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "axe-api-client",
"version": "2.1.0",
"description": "axe-api-client is a native JavaScript client for Axe API servers.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"/dist"
],
"scripts": {
"dev": "ts-node-dev --files --respawn --clear index.ts",
"dev-kit": "ts-node-dev --respawn --clear dev-kit.ts",
"build": "rm -rf ./dist && rollup -c",
"test": "jest --runInBand",
"test:dev": "jest --watch",
"test:consumer": "sh scripts/consumer-test.sh",
"lint": "eslint --max-warnings=0 .",
"lint:watch": "esw --watch --color",
"prepare": "husky"
},
"author": "Özgür Adem Işıklı <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"eslint": "^8.57.1",
"fetch-mock": "^9.11.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"microbundle": "^0.15.1",
"prettier": "3.3.3",
"rollup": "^2.79.2",
"@rollup/plugin-typescript": "^12.1.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"axe-api",
"rest-api",
"js-client",
"api-client"
]
}