-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.45 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
{
"name": "quickFind",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"test": "tsc -p ./tsconfig.test.json && nyc mocha test/**/*.ts",
"mocha": "./node_modules/mocha/bin/mocha",
"cover": "nyc mocha test/**/*.ts",
"test-build": "tsc -p ./tsconfig.test.json"
},
"nyc": {
"include": [
"lib/*.{js,ts}"
],
"exclude": [
"test/**/*.ts"
],
"extension": [
".js",
".ts"
],
"require": [
"source-map-support/register",
"ts-node/register"
],
"reporter": [
"text-summary",
"lcov"
],
"produceSourceMap": true,
"sourceMap": true,
"instrument": true,
"all": true
},
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"engines": {
"oni": "^0.0.1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^10.11.4",
"@types/react": "^16.4.15",
"oni-api": "0.0.50",
"oni-types": "0.0.8",
"rimraf": "^2.6.2",
"vscode-languageserver-types": "^3.13.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.1.3"
}
}