-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "nflx-spectator",
"version": "2.0.1",
"author": "Matthew Johnson <[email protected]>",
"main": "src/index.js",
"types": "src/index.d.ts",
"homepage": "https://github.org/Netflix/spectator-js",
"repository": {
"type": "git",
"url": "ssh://[email protected]:Netflix/spectator-js.git"
},
"engines": {
"node": ">6.4.0"
},
"license": "Apache-2.0",
"devDependencies": {
"body-parser": "^1.20.2",
"chai": "^4.3.7",
"coveralls": "^3.1.0",
"eslint": "^8.41.0",
"express": "^4.18.2",
"jscs": "^3.0.7",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"tsd": "^0.28.1"
},
"scripts": {
"clean": "rm -f ./src/*.d.ts",
"copy": "cp -rf ./types/* ./src",
"prepare": "npm run clean && npm run copy",
"test": "npm run test:unit && npm run test:types",
"test:types": "npm run clean && npm run copy && tsd",
"test:unit": "mocha --reporter spec",
"cover": "node_modules/.bin/nyc node_modules/mocha/bin/_mocha test/*",
"lint": "eslint src/*.js test/*.js"
},
"files": [
"src/*",
"src/index.d.ts"
],
"tsd": {
"directory": "test-d",
"compilerOptions": {
"esModuleInterop": true
}
},
"dependencies": {
"async": "^3.1.1",
"needle": "^3.2.0"
}
}