-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.53 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
{
"name": "taintflow",
"version": "0.0.0",
"description": "TaintFlow, a framework for JavaScript dynamic information flow analysis.",
"author": "Arthur Khashaev <[email protected]>",
"license": "MIT",
"private": true,
"homepage": "https://taintflow.org",
"bugs": "https://github.com/Invizory/taintflow/issues",
"repository": "https://github.com/Invizory/taintflow",
"engines": {
"node": ">= 7.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"watch": "yarn prepare && lerna exec tsc --watch",
"prepare": "lerna run prepare",
"pretest": "yarn prepare",
"test": "nyc mocha 'packages/*/dist/test/**/*.spec.js'",
"coverage": "nyc report --reporter=json && codecov -t 55f14f73-451a-428f-99ae-239412257cc0 -f coverage/*.json",
"lint": "tslint 'packages/*/src/**/*.ts' 'packages/*/test/**/*.ts'"
},
"devDependencies": {
"@types/babel-core": "^6.7.13",
"@types/babel-generator": "^6.7.14",
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"@types/node": "^12.0.0",
"babel-core": "^6.26.3",
"babel-generator": "^6.26.1",
"babel-preset-latest": "^6.16.0",
"chai": "^4.2.0",
"codecov": "^3.0.2",
"lerna": "^3.13.4",
"mocha": "^6.1.4",
"nyc": "^14.1.0",
"tslint": "^5.16.0",
"tslint-microsoft-contrib": "^6.1.1",
"typescript": "^3.6.2"
},
"nyc": {
"check-coverage": true,
"lines": 90,
"include": "packages/*/dist/src/**/*.js",
"exclude-after-remap": false,
"reporter": [
"text-summary",
"html"
]
}
}