-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.24 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
43
44
45
46
47
{
"name": "hashnum",
"version": "1.0.7-0",
"description": "A small library to shorten array of positive numbers or zero into a string of characters.",
"keywords": [
"decode",
"encode",
"hash",
"number",
"shorten"
],
"homepage": "https://github.com/pynnl/hashnum",
"repository": "github:pynnl/hashnum",
"license": "MIT",
"author": "pynnl",
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build:docs": "parcel build docs-src/index.pug --out-dir docs --public-url /hashnum/",
"dev:docs": "parcel serve docs-src/index.pug",
"dev:lib": "parcel serve .dev/index.html",
"test": "jest tests"
},
"dependencies": {
"jsbi": "^2.0.5"
},
"devDependencies": {
"@vue/component-compiler-utils": "^2.6.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"jest": "^24.8.0",
"parcel-bundler": "^1.12.3",
"pug": "^3.0.1",
"stylus": "^0.54.5",
"vue": "^2.6.10",
"vue-hot-reload-api": "^2.3.3",
"vue-template-compiler": "^2.6.10"
}
}