-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "circleci-api-js",
"version": "0.1.3",
"description": "",
"main": "dist/bundle.js",
"type": "module",
"module": "dist/bundle.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/bundle.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/bundle.js"
},
"default": "./dist/bundle.js"
},
"scripts": {
"test": "jest",
"lint": "eslint",
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"preinstall": "npx only-allow pnpm"
},
"keywords": [
"circleci",
"api",
"typescript"
],
"author": "",
"license": "MIT",
"repository": "https://github.com/xiaoxiyao/circleci-api-js",
"bugs": "https://github.com/xiaoxiyao/circleci-api-js/issues",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@rollup/plugin-typescript": "^11.1.5",
"@stylistic/eslint-plugin": "^1.4.1",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"dotenv": "^16.3.1",
"eslint": "^8.54.0",
"eslint-plugin-jest": "^27.6.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"rollup": "^4.3.0",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}