-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
39
40
41
42
43
44
45
46
47
48
{
"name": "@ts-common/property-set",
"version": "1.1.4",
"description": "A set of properties",
"main": "dist/index.js",
"scripts": {
"tsc": "tsc",
"tslint": "tslint --project .",
"test": "tsc && nyc mocha ./dist/test.js",
"prepack": "npm install && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ts-common/property-set.git"
},
"keywords": [
"property set"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ts-common/property-set/issues"
},
"files": [
"dist/index.d.ts",
"dist/index.js",
"dist/index.d.ts.map",
"dist/index.js.map",
"src/index.ts"
],
"homepage": "https://github.com/ts-common/property-set#readme",
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"devDependencies": {
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"tslint": "^6.1.3",
"typescript": "^5.2.2"
},
"dependencies": {}
}