-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.27 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.27 KB
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
{
"name": "goferfs-test-suite",
"version": "1.0.0-18",
"description": "Local Adapter for Gofer",
"main": "src/index.js",
"types": "src/index.ts",
"engines": {
"node": ">=4.0"
},
"scripts": {
"lint": "npm-run-all --parallel lint:*",
"lint:lint": "tslint src/**/*.ts",
"lint:types": "tsc --noEmit --skipLibCheck -p tsconfig.json",
"clean": "rimraf dist",
"prebuild": "npm run clean && npm run lint",
"build": "babel src --out-dir=dist --extensions='.ts' --source-maps",
"prepublishOnly": "npm build"
},
"repository": {
"url": "http://github.com/matchbooklab/goferfs-test-suite",
"type": "git"
},
"author": "Cameron Spear <cameron@matchbooklab.com>",
"contributors": [
"Justen Martin <jmart@the-coder.com>"
],
"license": "MIT",
"dependencies": {
"goferfs": "^1.0.0-10"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@types/node": "^12.12.14",
"@babel/plugin-transform-typescript": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@types/jest": "^24.0.23",
"jest": "^24.9.0",
"np": "^5.2.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1",
"typescript": "^3.7.3"
}
}