-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.19 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
{
"name": "black-hole-object",
"version": "1.0.3",
"description": "Create lightweight, chainable, callable, no-op black hole objects in JavaScript",
"author": "Keegan Leitz <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/kjleitz/black-hole-object#readme",
"repository": {
"type": "git",
"url": "https://github.com/kjleitz/black-hole-object"
},
"bugs": {
"url": "https://github.com/kjleitz/black-hole-object/issues"
},
"keywords": [
"black hole object",
"black hole",
"black",
"hole",
"object",
"null object",
"null",
"chain",
"chaining",
"chainable",
"no-op",
"noop",
"wrapper",
"mock",
"mimic",
"faux",
"fake object",
"fake",
"permissive",
"lenient",
"proxy",
"dynamic properties",
"dynamic",
"properties",
"naught gem",
"naught"
],
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test script specified\" && exit 1",
"build": "tsc",
"lint": "tslint -p tsconfig.json"
},
"devDependencies": {
"tslint": "^5.11.0",
"typescript": "^3.1.1"
},
"dependencies": {}
}