-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "@liamegan1/fxhash-helpers",
"version": "1.0.0-beta.2",
"description": "A series of helper functions for FX Hash",
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.module.js",
"umd:main": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"exports": {
".": "./dist/index.modern.js"
},
"scripts": {
"build": "rm -rf dist; npx microbundle",
"dev": "microbundle watch",
"prepare": "husky install; npm run build",
"document": "cat src/readme.md > README.md && npx jsdoc2md src/index.js >> README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liamegan/fxhash-helpers.git"
},
"author": "Liam Egan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/liamegan/fxhash-helpers/issues"
},
"homepage": "https://github.com/liamegan/fxhash-helpers#readme",
"devDependencies": {
"husky": "^7.0.2",
"microbundle": "^0.13.3",
"jsdoc-to-markdown": "^7.1.0",
"prettier": "^2.4.0"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 80
}
}