forked from herbsjs/herbs2gql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.49 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
54
55
56
57
58
59
{
"name": "herbs2gql",
"version": "1.0.5",
"description": "Domain entities javascript library.",
"main": "./src/herbs2gql.js",
"scripts": {
"test": "mocha --timeout 999999 --colors --recursive ./test",
"coverage": "nyc --reporter=lcov --reporter=text-summary mocha src/**/*.test.js npm test",
"lint": "npx eslint \"**/*.{js,jsx}\" --quiet",
"lint:fix": "npx eslint \"**/*.{js,jsx}\" --fix"
},
"directories": {
"lib": "src",
"test": "test",
"example": "examples"
},
"repository": {
"type": "git",
"url": "https://github.com/herbsjs/herbs2gql.git"
},
"bugs": {
"url": "https://github.com/herbsjs/herbs2gql/issues/"
},
"engines": {
"node": ">= 12.3.0"
},
"keywords": [
"domain",
"entity",
"value object",
"DDD",
"clean architecture"
],
"author": "David Lojudice Sb",
"license": "MIT",
"homepage": "https://github.com/herbsjs/herbs2gql#readme",
"dependencies": {
"buchu": "^1.0.11",
"gotu": "^1.0.9",
"lodash": "^4.17.21",
"suma": "^1.0.7"
},
"devDependencies": {
"apollo-server": "^2.21.1",
"apollo-server-express": "^2.21.1",
"babel-eslint": "^10.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"express": "^4.17.1",
"graphql": "^15.5.0",
"mocha": "^8.3.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"serialize-javascript": ">=5.0.1"
}
}