-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 901 Bytes
/
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": "@tsutil/lenses",
"version": "1.0.4",
"description": "TypeScript data lenses for extracting and validating data properties.",
"files": [
"lib/**/*"
],
"keywords": [
"typescript",
"data",
"lenses",
"validate"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emeraldwalk/tsutil-lenses.git"
},
"author": "Emeraldwalk",
"license": "MIT",
"bugs": {
"url": "https://github.com/emeraldwalk/tsutil-lenses/issues"
},
"homepage": "https://github.com/emeraldwalk/tsutil-lenses#readme",
"devDependencies": {
"@types/jest": "^23.3.13",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"typescript": "^3.2.4"
}
}