-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.33 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
{
"author": "Polymer Mallard LLC",
"dependencies": {
"@types/node-fetch": "^2.5.7",
"axios": "^0.21.4",
"form-data": "^4.0.0",
"https": "^1.0.0",
"node-fetch": "^2.6.0"
},
"description": "TypeScript models and collections for use with REST APIs",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/lodash": "^4.14.155",
"@types/mocha": "^8.2.0",
"@types/node": "^13.13.9",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"chai": "^4.2.0",
"eslint": "^7.17.0",
"express": "^4.17.3",
"mocha": "^8.2.1",
"ts-mocha": "^8.0.0",
"typescript": "^4.1.3"
},
"files": [
"build",
"README.md"
],
"license": "ISC",
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"name": "restmc",
"repository": {
"type": "git",
"url": "git+https://github.com/mattkenefick/restmc.git"
},
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"test": "ts-mocha -p tsconfig.json test/unit/**/*.spec.ts test/unit/*.spec.ts ",
"test-one": "ts-mocha -p tsconfig.json test/unit/Collection.spec.ts"
},
"types": "build/esm/index.d.ts",
"version": "0.15.0"
}