-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.95 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.95 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
59
60
61
62
63
64
65
66
67
68
{
"name": "@modular-rocks/workspace-node",
"version": "0.1.1-development",
"description": "This is the Workspace for Typescript/Javascript, extending @modular-rocks/workspace specifically for NodeJS.",
"main": "./dist/index.js",
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/declarations.d.ts"
},
"./package.json": "./package.json"
},
"types": "./dist/declarations.d.ts",
"engines": {
"node": "16.x"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "yarn lint",
"build": "tsc -p tsconfig.prod.json",
"prepublishOnly": "npm run build",
"test": "jest",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"lint": "yarn eslint src --ext .ts --fix"
},
"devDependencies": {
"@babel/types": "7.22.5",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"babel-jest": "^26.0.1",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "29.4.1",
"path-browserify": "^1.0.1",
"prettier": "^2.8.8",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5"
},
"author": "Alex Dollery (DolNpm/DolGit)",
"homepage": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/modular-rocks/workspace-node.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dependencies": {
"@babel/parser": "7.22.7",
"@babel/traverse": "7.22.8",
"@babel/types": "7.22.5",
"@modular-rocks/metrics-ts-js": "0.2.3-development",
"@modular-rocks/traverse-files": "0.2.5-development",
"@modular-rocks/workspace": "0.1.1-development",
"recast": "0.23.2"
}
}