-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.04 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
{
"name": "base-object",
"version": "1.4.1",
"description": "Base object that enables OOP-like support with JavaScript objects",
"main": "./lib",
"scripts": {
"test": "env NODE_ENV=test mocha --recursive --exit --reporter spec tests",
"cover": "env NODE_ENV=test istanbul cover _mocha -- --exit tests --recursive",
"coveralls": "env NODE_ENV=test istanbul cover _mocha --exit --report lcovonly -- tests --recursive && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"postversion": "npm publish",
"postpublish": "git push origin master & git push origin --tags"
},
"author": "One Hill Technologies, LLC",
"license": "Apache-2.0",
"repository": "https://github.com/onehilltech/base-object.git",
"dependencies": {
"lodash": "^4.17.10"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^6.2.2"
},
"keywords": [
"base-object",
"OOP",
"object-oriented programming",
"mixin"
],
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
}
}