-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.75 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
{
"name": "fetch-the-parrot",
"version": "3.0.2",
"description": "Javascript library for fetching PartyParrot(s)",
"source": "src/index.ts",
"main": "dist/fetch-the-parrot.umd.js",
"module": "dist/fetch-the-parrot.modern.js",
"types": "dist/index.d.ts",
"scripts": {
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"start": "microbundle watch",
"start:demo": "parcel demo/index.html",
"build": "microbundle",
"build:demo": "parcel build demo/index.html",
"test": "jest",
"test:watch": "jest --watchAll",
"format": "prettier --write .",
"format:staged": "pretty-quick --staged",
"format:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "https://github.com/breadadams/fetch-the-parrot.git"
},
"keywords": [
"party-parrot",
"party",
"parrot"
],
"author": "Brad Adams <[email protected]> (https://breadadams.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/breadadams/fetch-the-parrot/issues"
},
"homepage": "https://github.com/breadadams/fetch-the-parrot#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.20",
"babel-jest": "^26.6.3",
"husky": "^5.1.1",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"microbundle": "^0.13.3",
"parcel-bundler": "^1.12.5",
"pinst": "^2.1.6",
"prettier": "2.2.1",
"pretty-quick": "^3.1.0",
"prism-json-fold": "^1.0.1",
"prismjs": "^1.23.0",
"sass": "^1.42.0",
"ts-node": "^9.1.1"
},
"dependencies": {
"@types/js-yaml": "^4.0.0",
"js-yaml": "^4.0.0"
},
"files": [
"dist"
]
}