This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.58 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
54
55
56
57
58
59
60
{
"name": "contexture-client",
"version": "2.49.12",
"description": "The Contexture (aka ContextTree) Client",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./*": {
"import": "./dist/esm/*",
"require": "./dist/cjs/*"
}
},
"files": [
"./dist"
],
"scripts": {
"prepack": "node scripts/build.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:ci": "yarn test --coverage --json --outputFile test-results.json",
"fmt": "prettier --ignore-path .gitignore --write .",
"lint": "eslint --ignore-path .gitignore .",
"lint:ci": "yarn lint -o lint-results.json -f json",
"duti:fix": "yarn lint --fix && yarn fmt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartprocure/contexture-client.git"
},
"author": "Samuel Greene",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartprocure/contexture-client/issues"
},
"homepage": "https://github.com/smartprocure/contexture-client#readme",
"dependencies": {
"futil": "^1.71.8",
"lodash": "^4.17.15"
},
"devDependencies": {
"@flex-development/toggle-pkg-type": "^1.0.1",
"danger": "^11.1.2",
"danger-plugin-coverage": "^1.6.2",
"duti": "^0.15.2",
"esbuild": "^0.16.17",
"eslint": "^8.31.0",
"eslint-plugin-import": "^2.27.4",
"glob": "^8.0.3",
"jest": "^29.0.1",
"mobx": "^4.3.1",
"prettier": "^2.8.2"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"packageManager": "[email protected]"
}