-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.16 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
63
64
65
66
67
68
69
70
{
"name": "@hypercubed/samir",
"version": "1.0.0",
"description": "OK, I'll do it.",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/Hypercubed/samir",
"license": "MIT",
"keywords": [],
"scripts": {
"describe": "npm-scripts-info",
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"test": "run-s test:*",
"test:lint": "tslint --project .",
"test:unit": "jest",
"watch": "jest --watch",
"prebench": "npm-run-all build:*",
"bench": "node ./bench/json.js",
"doc": "run-s doc:html && open-cli build/docs/index.html",
"doc:html": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --out build/docs",
"doc:json": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --json build/docs/typedoc.json",
"reset": "git clean -dfx && git reset --hard && npm i",
"clean": "trash build test",
"changelog": "chg release -y && git add -A CHANGELOG.md",
"version": "run-s changelog build:*",
"np": "np",
"prepack": "npm-run-all build:*"
},
"engines": {
"node": ">=8.9"
},
"dependencies": {
"@types/imurmurhash": "^0.1.0",
"@types/node": "^13.13.4",
"imurmurhash": "^0.1.4"
},
"devDependencies": {
"@bitjson/typedoc": "^0.15.0-0",
"@hypercubed/milton": "^1.1.0",
"@types/jest": "^25.1.0",
"chg": "^0.4.0",
"chuhai": "^1.2.0",
"hash-anything": "^1.2.2",
"hash-obj": "^3.0.0",
"jest": "^25.5.4",
"np": "^6.0.0",
"npm-run-all": "^4.1.5",
"object-hash": "^2.0.3",
"open-cli": "^6.0.0",
"prettier": "^1.18.2",
"strip-ansi": "^6.0.0",
"trash-cli": "^3.0.0",
"ts-jest": "^25.0.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-security": "^1.16.0",
"tslint-config-swimlane": "^4.0.0",
"tslint-immutable": "^6.0.1",
"typescript": "^3.7.5"
},
"prettier": {
"singleQuote": true
}
}