-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "@reside-ic/tensor",
"version": "0.0.1",
"description": "Tensor containers",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"build": "tsc",
"webpack": "webpack",
"test": "jest -c jest.config.js",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reside-ic/tensor-js.git"
},
"author": "Rich FitzJohn <rich.fitzjohn@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/reside-ic/tensor-js/issues"
},
"homepage": "https://github.com/reside-ic/tensor-js#readme",
"devDependencies": {
"@types/jest": "^27.5.1",
"jest": "^28.0.0",
"ts-jest": "^28.0.0",
"ts-loader": "^9.3.0",
"tslint": "^5.20.1",
"typedoc": "^0.23.1",
"typescript": "^4.2.0",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
}
}