-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
{
"name": "@procore/js-sdk",
"version": "4.2.1",
"description": "A wrapper for the procore API",
"main": "dist/index.js",
"files": [
"/dist"
],
"types": "dist/types",
"homepage": "https://github.com/procore-oss/js-sdk",
"repository": {
"type": "git",
"url": "https://github.com/procore-oss/js-sdk.git"
},
"engines": {
"node": ">=16 || 14 >=14.17"
},
"scripts": {
"test": "yarn clean && yarn compile && yarn test:once",
"test:once": "nyc mocha -r ts-node/register test/**/*.spec.ts",
"test:file": "nyc mocha -r ts-node/register",
"test:coverage": "yarn clean && yarn compile && nyc --reporter=lcov mocha -r ts-node/register test/**/*.spec.ts",
"clean": "rimraf dist types",
"watch": "tsc --watch",
"compile": "yarn writeVer && tsc",
"writeVer": "cp package.json lib/version.json"
},
"author": "Procore Tech <[email protected]> (http://procore.com)",
"license": "MIT",
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"qs": "^6.11.1"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/core-js": "^2.5.5",
"@types/fetch-mock": "^7.3.5",
"@types/isomorphic-fetch": "^0.0.39",
"@types/mocha": "^10.0.1",
"@types/node": "^20.11.24",
"@types/qs": "^6.9.7",
"@types/sinon": "^17.0.3",
"chai": "^4.3.7",
"fetch-mock": "^9.11.0",
"jsdom": "^21.1.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rimraf": "^5.0.5",
"sinon": "^17.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}