-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·78 lines (78 loc) · 2.02 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
71
72
73
74
75
76
77
78
{
"name": "@openmined/differentialprivacy",
"version": "0.0.1",
"description": "OpenMined's TypeScript library for differential privacy",
"keywords": [
"typescript",
"npm",
"library",
"module",
"starter",
"mocha",
"tslint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/OpenMined/differentialprivacy-ts"
},
"bugs": {
"url": "https://github.com/OpenMined/differentialprivacy-ts/issues"
},
"homepage": "https://github.com/OpenMined/differentialprivacy-ts#readme",
"author": "Benjamin Szymkow <ben@openmined.org>",
"license": "Apache",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "yarn install && yarn run lint && yarn run test && yarn run clean-compiled && yarn run compile",
"build-with-audit": "yarn install && yarn audit --production && yarn run lint && yarn run test && yarn run clean-compiled && yarn run compile",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "nyc mocha --opts mocha.opts",
"clean-compiled": "npx shx rm -rf lib",
"compile": "tsc",
"test-watch": "mocha-typescript-watch -p tsconfig.json -o mocha.opts"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json-summary",
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"dependencies": {
"distributions-laplace-cdf": "0.0.0",
"got": "9.6.0"
},
"devDependencies": {
"@types/chai": "4.1.7",
"@types/got": "9.4.1",
"@types/mocha": "5.2.6",
"@types/node": "10.14.4",
"@types/sinon": "7.0.11",
"chai": "4.2.0",
"make-coverage-badge": "1.1.1",
"mocha": "6.0.2",
"mocha-typescript": "1.1.17",
"nyc": "13.3.0",
"sinon": "7.3.1",
"source-map-support": "0.5.11",
"ts-node": "8.0.3",
"tslint": "^5.14.0",
"tslint-config-airbnb": "5.11.1",
"typescript": "3.4.1"
}
}