-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.01 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "tinyield4ts",
"version": "1.1.0",
"description": "A Minimalistic, extensible and lazy sequence implementation for Typescript and Javascript",
"repository": {
"url": "https://github.com/tinyield/tinyield4ts.git",
"type": "git"
},
"main": "index.js",
"types": "index.d.ts",
"contributors": [
{
"name": "Fernando Miguel Gamboa de Carvalho",
"email": "[email protected]",
"url": "http://gamboa.pt/"
},
{
"name": "Diogo Poeira",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/dpoeira91/"
}
],
"license": "Apache-2.0",
"keywords": [
"tinyield",
"yield",
"sequence",
"iterator",
"typescript",
"tiny",
"query",
"jayield"
],
"scripts": {
"build:snapshot": "npm pack ./dist",
"test": "nyc --reporter=lcov mocha ./build/test",
"lint": "gts lint",
"clean": "gts clean && rimraf ./dist && rimraf ./*.tgz",
"sonar": "node analyse.js",
"compile": "tsc",
"fix": "gts fix",
"build": "tsc -p tsconfig.lib.json && copyfiles package.json README.md dist",
"prebuild:snapshot": "npm run build",
"prebuild": "npm run clean",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "prettier --check"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.11.2",
"chai": "^4.2.0",
"copyfiles": "^2.4.1",
"gts": "^3.0.3",
"husky": "^4.3.5",
"lint-staged": "^10.5.3",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sonarqube-scanner": "^2.6.0",
"typescript": "^4.0.3"
}
}