-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 968 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 968 Bytes
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
{
"name": "vettoriale",
"version": "1.0.0",
"description": "Esempio di programmazione TypeScript con gli spazi vettoriali.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"start": "npm-run-all -s clean build",
"clean": "del-cli dist",
"build": "tsc",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test"
},
"files": [
"LICENSE",
"README.md",
"AUTHORS",
"tsconfig.ts",
"package.json",
"/dist",
"/lib"
],
"keywords": [
"vettoriale",
"typescript"
],
"author": "Giuseppe Ferri",
"license": "LGPL-3.0-only",
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"chai": "^4.3.4",
"del-cli": "^3.0.1",
"mocha": "^8.3.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}