forked from a2labs/riveter
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.19 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.19 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "node-riveter",
"description": "Mix-in, inheritance and constructor extend behavior for your JavaScript enjoyment.",
"version": "2.0.0",
"homepage": "https://github.com/foo-foo-mq/node-riveter",
"repository": {
"type": "git",
"url": "git://github.com/foo-foo-mq/node-riveter.git"
},
"author": {
"name": "Foo-Foo-MQ Team",
"email": "def@foofoomq.com"
},
"contributors": [
{
"name": "Zach Lintz",
"email": "zlintz@foofoomq.com",
"url": "http://github.com/zlintz"
},
{
"name": "Parker Johansen",
"email": "auroq@foofoomq.com",
"url": "http://github.com/auroq"
},
{
"name": "appendTo, LLC",
"url": "http://appendTo.com"
},
{
"name": "Jim Cowart",
"email": "WhyNotJustComment@OnMyBlog.com",
"url": "http://ifandelse.com"
},
{
"name": "Nicholas Cloud",
"email": "WhyNotJustComment@OnMyBlog.com",
"url": "http://nicholascloud.com"
},
{
"name": "Doug Neiner",
"email": "WhyNotJustComment@OnMyBlog.com",
"url": "http://dougneiner.com/"
}
],
"keywords": [
"mixin",
"mix-in",
"inherit",
"extend",
"constructor"
],
"bugs": {
"email": "PleaseJustUseTheIssuesPage@github.com",
"url": "http://github.com/foo-foo-mq/node-riveter/issues"
},
"directories": {
"lib": "lib"
},
"main": "lib/riveter.js",
"engines": {
"node": ">=12"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"coveralls": "^3.1.0",
"expect.js": "~0.3.1",
"mocha": "^8.1.1",
"nyc": "^14.1.1",
"prettier-standard": "^16.4.1"
},
"scripts": {
"coverage": "nyc --exclude=**/*.spec.js --reporter=lcov npm run test ",
"test": "mocha ./spec/*.js",
"test:watch": "npm run test -- --watch",
"precommit": "lint-staged",
"lint": "prettier-standard --lint"
},
"lint-staged": {
"linters": {
"**/*": [
"prettier-standard --lint",
"git add"
]
}
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
},
{
"type": "GPL",
"url": "http://opensource.org/licenses/GPL-2.0"
}
]
}