-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
{
"name": "differential-privacy",
"version": "1.1.2",
"description": "Implements Global Differential Privacy for almost any numeric function",
"keywords": [
"epsilon",
"differential",
"privacy",
"global",
"laplace"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/gittyeric/differential-privacy"
},
"sideEffects": [
"./lib/index.js"
],
"engineStrict": true,
"engines": {
"node": ">= 8.0.0"
},
"dependencies": {
"decimal.js": "^10.0.0",
"seedrandom": "^3.0.5"
},
"devDependencies": {
"@types/jest": "^26.0.9",
"@types/node": "^8.10.61",
"@types/seedrandom": "^2.4.28",
"@types/uuid": "^3.4.4",
"jest": "^26.0.0",
"prettier": "^2.0.5",
"rimraf": "~2.6.2",
"ts-jest": "^26.2.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.8.4",
"tslib": "^2.0.1"
},
"scripts": {
"clean": "rimraf coverage lib tmp && prettier src/*.ts tests/*.ts examples/*.ts",
"build": "npm run clean && npm run build:ts-js && npm run build:ts-types",
"build:ts-js": "tsc -p tsconfig.json",
"build:ts-types": "tsc -p tsconfig.release.json",
"deploy-dry": "npm run build & npm run lint & npm run test && git status",
"watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "tslint --fix --project \"tsconfig.json\" && npm run lint && npm run test-only",
"test-only": "jest --coverage --runInBand",
"test:watch": "jest --watchAll"
},
"author": "Eric <git@letsmakeit.com>",
"license": "MIT"
}