-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·85 lines (85 loc) · 1.61 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "is-blackrock",
"version": "0.4.1",
"description": "Blackrock Application Server",
"homepage": "https://blackrock.industryswarm.com",
"keywords": [
"blackrock",
"framework",
"apps",
"application",
"server",
"SaaS"
],
"author": {
"name": "Darren Smith",
"email": "contact@darrensmith.com.au",
"url": "https://www.darrensmith.com.au/"
},
"scripts": {
"test": "nyc mocha **/*.br-test.js",
"lint": "eslint .",
"start": "node index.js start console"
},
"bin": {
"blackrock": "index.js"
},
"maintainers": [
{
"name": "Darren Smith",
"email": "contact@darrensmith.com.au"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Industryswarm/isnode-blackrock.git"
},
"main": "index.js",
"engines": {
"node": ">=0.10.3"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-uuid": "^1.0.6",
"eslint": "^7.10.0",
"eslint-config-google": "^0.14.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"sinon": "^9.0.3",
"jsdoc": "^3.6.6",
"jsdoc-mermaid": "^1.0.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"google"
],
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 6
},
"rules": {
"max-len": [
2,
120,
4,
{
"ignoreUrls": true
}
],
"no-console": 0
}
},
"eslintIgnore": [
"node_modules",
"!node_modules/is-blackrock"
],
"nyc": {
"include": [
"node_modules/is-blackrock/**/*.js"
],
"excludeNodeModules": false
}
}