-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 920 Bytes
/
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
{
"name": "@ungap/esxtoken",
"version": "0.4.2",
"description": "The ESXToken class",
"main": "./cjs/index.js",
"scripts": {
"build": "npm run cjs && npm test",
"cjs": "ascjs --no-default esm cjs",
"test": "c8 node test/index.js"
},
"keywords": [
"esx",
"polyfill"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"devDependencies": {
"ascjs": "^5.0.1",
"c8": "^7.12.0"
},
"module": "./esm/index.js",
"types": "./types/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./esm/index.js",
"default": "./cjs/index.js"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ungap/esxtoken.git"
},
"bugs": {
"url": "https://github.com/ungap/esxtoken/issues"
},
"homepage": "https://github.com/ungap/esxtoken#readme"
}