-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.09 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
{
"name": "wso2is-populate",
"version": "2.0.4",
"description": "A standalone script that can be used as a wrapper around an WSO2 Identity Server in order to import users and roles into it.",
"main": "src/index.js",
"scripts": {
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"start": "node src/index.js",
"test": "jest src/test/unit",
"integration-test-authorisation": "jest integration_test/authorisation/tests/index.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/casablanca-project/wso2is-populate.git"
},
"author": "ModusBox Inc.",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/casablanca-project/wso2is-populate/issues"
},
"homepage": "https://github.com/casablanca-project/wso2is-populate#readme",
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"jest": "^26.6.3",
"rewire": "^4.0.1"
},
"dependencies": {
"ajv": "^6.12.6",
"check-types": "^9.0.1",
"dotenv": "^8.0.0",
"got": "^11.8.2"
}
}