-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 723 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "icecore-hashids",
"version": "0.4.0",
"private": true,
"description": "A lightweight generator for short, unique, non-sequential and decodable Hashids from non-negative numbers.",
"author": {
"name": "Arctic Ice Studio",
"url": "http://arcticicestudio.com"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"gitbook-cli": "2.3.2",
"hashids": "1.1.1"
},
"scripts": {
"docs:build": "npm run docs:clean && gitbook install ./src/main/docs && gitbook build ./src/main/docs ./target/docs",
"docs:clean": "rm -rf ./target/docs",
"docs:serve": "npm run docs:build && gitbook serve ./src/main/docs ./target/docs"
},
"engines": {
"node": "<=6.5"
}
}