-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 KB
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
{
"name": "rsm-api",
"author": "Redsauce Engineering <info@redsauce.net> (https://redsauce.net)",
"contributors": [
"Andrei Iacob <aiacob@redsauce.net>",
"Calvin Tichenor <ctichenor@redsauce.net>",
"Kenan Rhoton <krhoton@redsauce.net>",
"Meritxell Rodriguez <mrodriguez@redsauce.net>"
],
"bugs": "https://github.com/Redsauce/rsm-node-api/issues",
"version": "1.2.7",
"license": "MIT",
"description": "API to access RSM",
"repository": "github:Redsauce/rsm-node-api",
"main": "index.js",
"private": false,
"dependencies": {
"browser-or-node": "^1.3.0",
"buffer": "^6.0.3",
"form-data": "^3.0.0",
"lodash": "^4.17.20",
"node-fetch": "^2.6.1",
"xmldom": "^0.4.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cors": "^2.8.5",
"eslint": "^7.18.0",
"eslint-plugin-mocha": "^8.0.0",
"mocha": "^8.2.1",
"sinon": "^9.2.4"
},
"scripts": {
"build": "browserify -r ./index.js:rsm -o rsm.js",
"lint": "eslint --ext .js .",
"test": "mocha",
"test:browser": "node browser-tests.js"
}
}