-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 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
42
{
"name": "convertkit-api",
"version": "1.5.5",
"description": "Javascript library to access the ConvertKit API",
"main": "src/index.js",
"module": "dist/convertkit-api.esm.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"nyc": "nyc npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ConvertKit/convertkit-api.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ConvertKit/convertkit-api/issues"
},
"homepage": "https://github.com/ConvertKit/convertkit-api#readme",
"dependencies": {
"axios": "^0.21.1",
"qs": "^6.10.1"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"babel-jest": "^26.6.3",
"jest": "^27.0.4",
"nyc": "^15.1.0",
"rollup-plugin-styles": "^3.14.1"
}
}