-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.04 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
{
"name": "memx",
"version": "0.3.5",
"description": "Simple and fast memcached client",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
}
},
"scripts": {
"build": "plug",
"coverage": "plug coverage",
"dev": "plug coverage -w src -w test",
"lint": "plug lint",
"test": "plug test",
"transpile": "plug transpile"
},
"author": "Juit Developers <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@plugjs/build": "^0.6.0",
"@types/chai": "<5",
"@types/chai-as-promised": "<8",
"@types/memjs": "^1.3.3",
"chai": "<5.0.0",
"chai-as-promised": "<8.0.0",
"chai-exclude": "^2.1.1",
"memjs": "^1.3.2"
},
"directories": {
"test": "test"
},
"files": [
"*.md",
"dist/",
"src/"
]
}