-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "@simonsinclair/n32",
"version": "0.1.0",
"description": "Express numbers in a form that can be conveniently and accurately transmitted between humans and computers.",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run build",
"dev": "tsc --watch --pretty",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch"
},
"files": [
"dist"
],
"engines": {
"node": ">=12"
},
"types": "dist/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/simonsinclair/n32.git"
},
"keywords": [
"base32",
"douglas-crockford",
"crockford"
],
"author": "Simon Sinclair <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/simonsinclair/n32/issues"
},
"homepage": "https://github.com/simonsinclair/n32#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"babel-jest": "^27.0.6",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
}
}