-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.82 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@semperfortis/snowflakejs",
"version": "1.0.1",
"description": "Twitter's Snowflake implementation for javascript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SemperFortis/snowflakejs.git"
},
"author": "SemperFortis",
"license": "MIT",
"bugs": {
"url": "https://github.com/SemperFortis/snowflakejs/issues"
},
"homepage": "https://github.com/SemperFortis/snowflakejs#readme",
"keywords": [
"twitter",
"snowflake"
],
"scripts": {
"build": "tsc",
"commit": "cz",
"dev": "ts-node test/index.ts",
"eslint": "eslint --fix . --ext ts",
"watch": "tsc -w",
"prettier": "prettier --write .",
"test": "jest",
"prepare": "npm run build"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.14.5",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^27.2.5",
"commitlint": "^13.2.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.2.5",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}