-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "spec-pattern",
"version": "3.5.0",
"description": "Specification Pattern in TypeScript",
"license": "MIT",
"author": "Thiago Delgado Pinto",
"homepage": "https://github.com/thiagodp/spec-pattern",
"repository": {
"type": "git",
"url": "git://gitlab.com/thiagodp/spec-pattern.git"
},
"bugs": {
"url": "https://github.com/thiagodp/spec-pattern/issues"
},
"keywords": [
"design-pattern",
"specification",
"specification-pattern",
"spec",
"pattern",
"javascript",
"typescript",
"node",
"ts",
"js"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"test": "jest --all",
"all": "npm run build && npm run test",
"preversion": "npm run build && npm run test",
"postversion": "git push && git push --tags"
},
"jest": {
"preset": "ts-jest"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"jest": "^25.5.4",
"rimraf": "^3.0.2",
"ts-jest": "^25.5.1",
"typescript": "^3.9.10"
}
}