-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.31 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
{
"name": "mostly-entity",
"version": "1.1.1",
"description": "MostlyJS entity utilities for parse incoming and outgoing data",
"author": {
"name": "mostly",
"email": "[email protected]",
"url": "https://mostlyjs.github.com"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"publish": "git push origin --tags && git push origin",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"lint": "eslint-if-supported semistandard --fix",
"mocha": "mocha --opts mocha.opts",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"test": "npm run lint && npm run coverage"
},
"homepage": "https://github.com/MostlyJS/mostly-entity#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MostlyJS/mostly-entity.git"
},
"bugs": {
"url": "https://github.com/MostlyJS/mostly-entity/issues"
},
"dependencies": {
"debug": "^2.6.6",
"lodash": "^4.17.4",
"seamless-immutable": "^7.1.2",
"validator": "^8.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint-if-supported": "^1.0.1",
"eslint-plugin-promise": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.3.0"
}
}