-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
88 lines (88 loc) · 2.54 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@anvilco/anvil",
"version": "3.3.1",
"description": "Anvil API Client",
"author": "Anvil Foundry Inc.",
"homepage": "https://github.com/anvilco/node-anvil#readme",
"license": "MIT",
"keywords": [
"pdf",
"pdf-fill",
"json-to-pdf"
],
"bugs": {
"url": "https://github.com/anvilco/node-anvil/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anvilco/node-anvil.git"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"@anvilco:registry": "https://registry.npmjs.org"
},
"main": "index.js",
"files": [
"package.json",
"README.md",
"LICENSE.md",
"CHANGELOG.md",
"dist/",
"types/",
"example/",
"!**/.DS_STORE",
"!**/.DS_Store"
],
"types": "./types/src/index.d.ts",
"scripts": {
"build": "babel src --out-dir ./dist",
"clean": "yarn rimraf ./dist",
"prepare": "yarn tsc && yarn clean && yarn build",
"publish:beta": "npm publish --tag beta",
"test": "yarn prepare && mocha --config ./test/mocha.js",
"lint": "eslint 'src/**/*.js' 'test/**/*.js'",
"lint:quiet": "yarn run lint --quiet",
"test:debug": "yarn test --inspect-brk=0.0.0.0:9223",
"test:watch": "nodemon --signal SIGINT --watch test --watch src -x 'yarn test'",
"test-e2e:build": "rimraf test/e2e/node-anvil.tgz && node dev/build-e2e.mjs",
"test-e2e:install": "npm --prefix test/e2e run prep && npm --prefix test/e2e install"
},
"dependencies": {
"@anvilco/node-fetch": "^3.3.3-beta.0",
"abort-controller": "^3.0.0",
"extract-files": "^13",
"limiter": "^2.1.0"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.18.2",
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-env": "^7.22.10",
"@babel/register": "^7.22.5",
"@types/node": "^20.1.1",
"bdd-lazy-var": "^2.5.4",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.11.0",
"eslint-config-nicenice": "^3.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-camel-case": "^1.1.1",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^10.0.0",
"nodemon": "^3.0.1",
"rimraf": "^5.0.0",
"sinon": "^17.0.1",
"sinon-chai": "^3.5.0",
"typescript": "^5.0.4",
"yargs": "^17.4.0"
}
}