This repository was archived by the owner on Aug 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.78 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.78 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "clojure-manifest-parser",
"description": "clojure-manifest-parser",
"main": "dist/index.js",
"scripts": {
"format:check": "prettier --check '{{lib,test}/!(fixtures)/**/*,*}.{js,ts,json,yml}'",
"format": "prettier --write '{{lib,test}/!(fixtures)/**/*,*}.{js,ts,json,yml}'",
"lint": "npm run format:check && npm run lint:tslint-config && npm run lint:tslint",
"lint:eslint": "eslint --cache '{lib,test}/**/*.ts'",
"lint:tslint": "tslint -p tsconfig.json",
"lint:tslint-config": "tslint-config-prettier-check ./tslint.json",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest",
"test:coverage": "npm run test:unit -- --coverage",
"test:watch": "tsc-watch --onSuccess 'npm run test:unit'",
"build": "tsc",
"build-watch": "tsc -w",
"prepare": "npm run build"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/snyk/clojure-manifest-parser"
},
"author": "snyk.io",
"license": "Apache-2.0",
"engines": {
"node": ">=8"
},
"files": [
"bin",
"dist"
],
"homepage": "https://github.com/snyk/clojure-manifest-parser#readme",
"dependencies": {
"@snyk/dep-graph": "^1.15.0",
"lodash": "^4.17.15",
"source-map-support": "^0.5.7",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/lodash": "^4.14.149",
"@types/node": "^8.10.59",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.1.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"ts-node": "7.0.0",
"ts-jest": "^24.0.2",
"tsc-watch": "^2.2.1",
"tslint": "5.11.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.1"
}
}