-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.51 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
{
"name": "cooperate",
"version": "2.0.3",
"description": "Convention based composition tool that let's you compose a series of objects into a single object quickly.",
"main": "./src/index.js",
"scripts": {
"cover": "istanbul cover ./node_modules/lab/bin/lab ./dist/test --leaks",
"t": "lab ./test/ -v -S",
"travis": "npm run test",
"pretest": "eslint src",
"test": "lab ./test/ -v -S",
"premajor": "npm run test",
"major": "npm version major -m \"published to npm as v%s\" && git push --follow-tags && npm publish",
"preminor": "npm run test",
"minor": "npm version minor -m \"published to npm as v%s\" && git push --follow-tags && npm publish",
"prepatch": "npm run test",
"patch": "npm version patch -m \"published to npm as v%s\" && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/midknight41/cooperate.git"
},
"keywords": [
"compose",
"composition",
"mixin",
"inheritance",
"traits",
"talents",
"build",
"proxy"
],
"author": "Chad Macey",
"license": "MIT",
"bugs": {
"url": "https://github.com/midknight41/cooperate/issues"
},
"homepage": "https://github.com/midknight41/cooperate#readme",
"dependencies": {
"examine-instance": "^1.1.1"
},
"devDependencies": {
"@hapi/code": "^7.0.0",
"@hapi/lab": "^21.0.0",
"eslint": "^6.5.1",
"istanbul": "^0.4.5",
"lab-testing": "^4.0.0",
"rimraf": "^3.0.0"
},
"files": [
"src"
]
}