-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.66 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
60
61
62
{
"name": "@modular-rocks/workspace",
"version": "0.1.1-development",
"description": "A workspace for working with virtual codebases",
"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.4",
"@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.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dependencies": {
"@modular-rocks/traverse-files": "0.2.5-development"
}
}