-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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
{
"name": "identity-controls",
"description": "Identity access controls for your application",
"version": "1.0.1",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js .",
"test": "nyc --reporter=lcov --reporter=text --exclude index.test.js mocha --exit index.test.js",
"preversion": "npm run lint && npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/someimportantcompany/identity-controls.git"
},
"files": [
"index.js"
],
"keywords": [
"identity",
"controls",
"access",
"management",
"iam",
"permissions"
],
"author": "James D <[email protected]> (https://jdrydn.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/someimportantcompany/identity-controls/issues"
},
"homepage": "https://github.com/someimportantcompany/identity-controls#readme",
"dependencies": {
"lodash.isplainobject": "^4.0.6",
"micromatch": "^4.0.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"dotenv": "^6.2.0",
"eslint": "^5.16.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-sort-requires": "^2.1.0",
"http-assert": "^1.4.1",
"lodash": "^4.17.20",
"mocha": "^6.2.3",
"module-alias": "^2.2.2",
"ms": "^2.1.3",
"nanoid": "^3.1.20",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"uuid": "^8.3.2"
},
"engines": {
"node": ">= 12.0.0",
"npm": ">= 6.0.0"
}
}