-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.08 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.08 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "uuid-hash",
"version": "1.1.4",
"description": "Es6 class that generates RFC-compliant UUID v5.",
"author": "Dan Lynch <pyramation@gmail.com>",
"homepage": "https://github.com/pyramation/uuid-hash#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "main/index.js",
"module": "module/index.js",
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"main",
"module"
],
"scripts": {
"build:main": "cross-env BABEL_ENV=production babel src --out-dir main --delete-dir-on-start",
"build:module": "cross-env MODULE=true babel src --out-dir module --delete-dir-on-start",
"build": "npm run build:module && npm run build:main",
"prepublish": "npm run build",
"dev": "cross-env NODE_ENV=development babel-node src/index",
"watch": "cross-env NODE_ENV=development babel-watch src/index",
"lint": "eslint src --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/pyramation/uuid-hash"
},
"keywords": [
"hash",
"crypto",
"uuidv5",
"uuid"
],
"bugs": {
"url": "https://github.com/pyramation/uuid-hash/issues"
},
"devDependencies": {
"@babel/cli": "7.11.6",
"@babel/core": "7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-export-default-from": "7.10.4",
"@babel/plugin-proposal-object-rest-spread": "7.11.0",
"@babel/plugin-transform-runtime": "7.11.5",
"@babel/preset-env": "7.11.5",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "25.1.0",
"babel-watch": "^7.0.0",
"cross-env": "^7.0.2",
"eslint": "6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.5.0",
"jest-in-case": "^1.0.2",
"prettier": "^2.1.2",
"regenerator-runtime": "^0.13.7"
},
"dependencies": {
"@babel/runtime": "^7.11.2"
}
}