forked from anvilresearch/modinha
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "camfou-modinha",
"description": "Modinha is a toolkit for creating persisted models in Nodejs. (camfou fork)",
"version": "0.0.0-development",
"repository": {
"type": "git",
"url": "https://github.com/camfou/modinha.git"
},
"scripts": {
"test": "mocha",
"lint": "eslint -c .eslintrc lib/**",
"test-watch": "mocha test --watch",
"cover": "nyc --reporter=lcov npm run test"
},
"main": "./lib/Modinha.js",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"coffeescript": "^2.5.1",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"semantic-release": "^17.0.6",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0"
},
"dependencies": {
"clone": "^2.1.2",
"lx-valid": "^1.2.4",
"object-assign": "^4.1.1",
"underscore": "^1.10.2",
"underscore-deep-extend": "1.1.5",
"uuid": "^7.0.3"
}
}