-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.19 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
{
"name": "rustic",
"version": "1.2.2",
"description": "A package providing Rust types and helpers for Typescript",
"repository": "github:franeklubi/rustic",
"main": "dist/bundle.js",
"types": "dist/src/index.d.ts",
"scripts": {
"watch": "webpack -w --mode development --progress -c webpack.config.dev.js",
"build": "webpack --mode production --progress -c webpack.config.prod.js",
"lint": "tslint -p tsconfig.json",
"doc": "typedoc src",
"prepublishOnly": "rm dist -rf && npm run lint && npm run test && npm run build",
"test": "npm run coverage",
"test-watch": "jest --watch --config jestconfig.json",
"test-clear-cache": "jest --clearCache",
"coverage": "jest --coverage --config jestconfig.json"
},
"keywords": [
"rust",
"rust types",
"rust helpers",
"rustic"
],
"author": "franeklubi",
"license": "BSD-3-Clause",
"devDependencies": {
"@types/jest": "^26.0.24",
"clean-terminal-webpack-plugin": "^3.0.0",
"jest": "^27.0.6",
"terser-webpack-plugin": "^5.1.4",
"ts-loader": "^9.2.4",
"typedoc": "^0.21.4",
"typescript": "^4.3.5",
"webpack": "^5.47.1",
"webpack-cli": "^4.7.2",
"ts-jest": "^27.0.4",
"tslint": "^6.1.3"
},
"files": [
"dist/**/*"
]
}