-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 KB
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
{
"name": "arrow-code",
"version": "0.3.3",
"description": "Arrow Code",
"main": "lib/index",
"module": "es/index",
"type": "module",
"exports": {
".": {
"import": { "types": "./es/index.d.ts", "default": "./es/index.js" },
"require": { "types": "./lib/index.d.ts", "default": "./lib/index.js" }
}
},
"repository": {
"type": "git",
"url": "https://github.com/ticlo/arrow-code.git"
},
"author": {
"name": "Rick Zhou",
"email": "rinick@gmail.com"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@types/base64-js": "^1.3.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.0",
"base64-js": "^1.5.1",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.8.4"
},
"scripts": {
"test": "cross-env NODE_ENV=TEST mocha -r ts-node/register test/**/*.ts",
"build-es": "tsc --module nodenext --moduleResolution nodenext --outDir ./es",
"build-lib": "tsc --outDir ./lib"
}
}