-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 939 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
{
"name": "arrow-code",
"version": "0.3.0",
"description": "Arrow Code",
"main": "lib/index",
"module": "es/index",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ticlo/arrow-code.git"
},
"author": {
"name": "Rick Zhou",
"email": "[email protected]"
},
"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 es2020 --outDir ./es",
"build-lib": "tsc --outDir ./lib"
}
}