forked from electrode-io/memcache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.07 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
{
"name": "memcache",
"version": "0.0.1",
"description": "memcached client and server in NodeJS",
"scripts": {
"bootstrap": "lerna bootstrap --no-ci",
"build": "npm run tsc",
"build:clean": "npm run tsc -- --clean",
"lint": "lerna run --no-bail lint",
"prepublishOnly": "npm run build:clean && npm run build",
"tsc": "tsc --build tsconfig.build.json",
"test": "lerna run test",
"version": "lerna version"
},
"keywords": [],
"author": "Joel Chen <[email protected]>",
"license": "Apache-2.0",
"private": true,
"devDependencies": {
"@types/jest": "28.1.7",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "4.11.0",
"@typescript-eslint/parser": "4.11.0",
"@xarc/module-dev": "4.1.0",
"bluebird": "3.5.0",
"eslint": "7.32.0",
"eslint-config-walmart": "2.2.1",
"eslint-plugin-filenames": "1.1.0",
"eslint-plugin-jsdoc": "30.7.9",
"eslint-plugin-tsdoc": "0.2.11",
"lerna": "5.5.2",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"typescript": "4.7.4"
}
}