forked from ifedoroff/compound-file-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "@spamscanner/compound-binary-file-js",
"version": "1.0.12",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "",
"scripts": {
"clean": "del-cli dist",
"lint": "tslint --project tsconfig.json",
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"benchmark": "mocha -r ts-node/register benchmark/**/*.spec.ts",
"build:tsc": "tsc",
"build": "npm-run-all clean test lint build:tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/chai": "^4.2.11",
"@types/core-js": "^2.5.3",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"@types/benchmark": "^1.0.33",
"chai": "^4.2.0",
"del-cli": "^3.0.0",
"mocha": "^7.1.1",
"npm-run-all": "^4.1.5",
"ts-mockito": "^2.5.0",
"ts-node": "^8.8.1",
"tslint": "^6.1.1",
"typescript": "^3.8.3",
"benchmark": "^2.1.4"
},
"dependencies": {
"@types/long": "^4.0.1",
"long": "^4.0.0",
"ts-treemap": "^1.0.0",
"utf16-char-codes": "^1.0.0"
}
}