This repository has been archived by the owner on Dec 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 2.41 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
{
"name": "permanent-api-js",
"version": "1.0.4",
"description": "REST API wrapper for Nodejs",
"main": "index.js",
"scripts": {
"unit_tests": "mocha './test/unit_tests/*/*.js' --reporter mochawesome --reporter-options reportDir=test_results/unit_tests,reportFilename=unit_tests",
"functional_tests": "mocha './test/functional_tests/*/*.js' --reporter mochawesome --reporter-options reportDir=test_results/functional_tests,reportFilename=functional_tests",
"test": "npm run-script unit_tests && npm run-script functional_tests",
"account-get": "mocha './test/unit_tests/accounts/get.js' ",
"arch-add": "mocha './test/unit_tests/archives/add.js' ",
"arch-get": "mocha './test/unit_tests/archives/get.js' ",
"arch-delete": "mocha './test/unit_tests/archives/delete.js' --timeout 60000 ",
"arch-update": "mocha './test/unit_tests/archives/update.js' --timeout 60000 ",
"folder-add": "mocha './test/unit_tests/folders/add.js' --timeout 60000 ",
"folder-get": "mocha './test/unit_tests/folders/get.js' --timeout 60000 ",
"folder-delete": "mocha './test/unit_tests/folders/delete.js' --timeout 60000 ",
"folder-update": "mocha './test/unit_tests/folders/update.js' --timeout 60000 ",
"record-test": "mocha './test/unit_tests/records/**.js' --timeout 60000 --reporter mochawesome --reporter-options reportDir=test_results/unit_tests,reportFilename=unit_tests",
"record-add": "mocha './test/unit_tests/records/add.js' ",
"record-get": "mocha './test/unit_tests/records/get.js' ",
"record-update": "mocha './test/unit_tests/records/update.js' ",
"record-del": "mocha './test/unit_tests/records/delete.js' ",
"actions-move": "mocha './test/unit_tests/actions/move.js' --timeout 60000 ",
"actions-copy": "mocha './test/unit_tests/actions/copy.js' --timeout 60000 ",
"start": "cd publish/server && node app.js "
},
"repository": {
"type": "git",
"url": "git+https://github.com/Permanent-Legacy-Foundation/permanent-api-js.git"
},
"author": "jerryongit",
"license": "ISC",
"bugs": {
"url": "https://github.com/Permanent-Legacy-Foundation/permanent-api-js/issues"
},
"homepage": "https://github.com/Permanent-Legacy-Foundation/permanent-api-js#readme",
"dependencies": {
"request": "^2.88.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mime-types": "^2.1.26",
"mocha": "^7.2.0",
"mochawesome": "^4.1.0",
"moment": "^2.24.0"
}
}