generated from HugoDF/node-mit-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.7 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
{
"name": "buttondown",
"version": "1.1.2",
"source": "src/main.ts",
"main": "dist/main.umd.js",
"module": "dist/main.modern.module.js",
"unpkg": "dist/main.umd.js",
"types": "dist/main.d.ts",
"keywords": [
"buttondown",
"buttondown-js",
"api-wrapper"
],
"files": [
"dist/**.js*",
"dist/**/*.ts"
],
"scripts": {
"build": "microbundle --define PKG_VERSION=$npm_package_version",
"watch": "microbundle watch --define PKG_VERSION=$npm_package_version",
"test": "yarn test:unit",
"test:unit": "ava tests/*.js",
"test:smoke": "ava tests/e2e/smoke.js",
"pretest:e2e": "echo '⚠️ Full E2E suite includes tests that add/remove new data'",
"test:e2e": "ava tests/e2e/*.js",
"lint": "xo src tests",
"format": "xo src tests --fix",
"prepack": "rm -rf dist && yarn build",
"release": "yarn prepack && source .env && np"
},
"devDependencies": {
"ava": "^3.7.0",
"esm": "^3.2.25",
"microbundle": "^0.15.1",
"nock": "^13.0.2",
"np": "^7.0.0",
"xo": "^0.39.1"
},
"xo": {
"prettier": true,
"space": true,
"globals": [],
"rules": {
"camelcase": 0
}
},
"ava": {
"require": [
"esm"
]
},
"license": "MIT",
"dependencies": {
"got": "^11.0.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"description": "JavaScript (Node.js) Buttondown API wrapper.",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HugoDF/buttondown.git"
},
"author": "Hugo",
"bugs": {
"url": "https://github.com/HugoDF/buttondown/issues"
},
"homepage": "https://github.com/HugoDF/buttondown#readme"
}