-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
42 lines (42 loc) · 868 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
39
40
41
42
{
"name": "heir",
"version": "4.0.0",
"description": "Helper functions for prototypical inheritance",
"license": "Unlicense",
"main": "heir.js",
"scripts": {
"prepublish": "npm run lint && npm run test",
"lint": "standard",
"test": "tape tests.js | faucet"
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/Olical/Heir/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/Olical/Heir.git"
},
"directories": {
"test": "tests"
},
"keywords": [
"prototype",
"inheritance",
"class",
"extend",
"inherit",
"oop"
],
"author": {
"name": "Oliver Caldwell",
"email": "[email protected]",
"url": "https://oli.me.uk/"
},
"dependencies": {},
"devDependencies": {
"faucet": "^0.0.1",
"standard": "^11.0.1",
"tape": "^4.9.0"
}
}