-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.42 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
49
50
51
{
"name": "@memelabs/protobuf",
"version": "0.3.5",
"description": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MemeLabs/protobuf"
},
"scripts": {
"build": "tsc --build tsconfig.lib.json",
"test": "mocha src/**/*.ts --recursive -r ts-node/register 'src/**/*.test.ts' --timeout 60000 --exit"
},
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/assert": "^1.5.6",
"@types/mocha": "^8.2.3",
"@types/node": "^12.20.48",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"assert": "^2.0.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^31.6.1",
"eslint-plugin-prefer-arrow": "^1.2.2",
"import-sort-style-module": "^6.0.0",
"mocha": "^8.4.0",
"prettier": "^2.6.2",
"prettier-plugin-import-sort": "0.0.6",
"stream-browserify": "^3.0.0",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^8.3.0",
"ts-node": "^9.1.1",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"tslint": "^6.1.3",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.6.3",
"typescript-tslint-plugin": "^1.0.2"
},
"importSort": {
".ts": {
"style": "module",
"parser": "typescript"
}
}
}