-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.28 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
{
"name": "the-camp",
"version": "2.0.4",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "esm/index.js",
"repository": "[email protected]:whitekiwi/the-camp.git",
"author": "Whitekiwi <[email protected]>",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint \"{{src}/**/*.ts,**.js}\" --fix",
"test": "jest --testPathIgnorePatterns='.e2e.*'",
"test:watch": "jest --watch --testPathIgnorePatterns='.e2e.*'",
"test:cov": "jest --coverage --testPathIgnorePatterns='.e2e.*'",
"prebuild": "rimraf ./lib ./esm",
"build": "tsc -p tsconfig.build.json && tsc -p tsconfig.esm.json"
},
"dependencies": {
"axios": "^0.26.0"
},
"devDependencies": {
"@kiwi-lib/eslint-config": "^1",
"@types/jest": "^27.4.1",
"@types/node": "^16",
"dotenv": "^16.0.0",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.6.2",
"typescript-transform-paths": "^3.3.1"
},
"license": "MIT",
"homepage": "https://github.com/whitekiwi/the-camp",
"bugs": {
"url": "https://github.com/whitekiwi/the-camp/issues",
"email": "[email protected]"
},
"keywords": [
"kiwi-lib"
],
"files": [
"lib",
"esm",
"src"
],
"prettier": "@kiwi-lib/eslint-config/prettier.config"
}