Skip to content

Commit

Permalink
Merge pull request #54 from Pure-D/deps
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya authored Nov 23, 2021
2 parents 6b6d43d + f37ab2f commit eb31c2f
Show file tree
Hide file tree
Showing 3 changed files with 2,051 additions and 2,274 deletions.
151 changes: 79 additions & 72 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,57 @@
{
"name": "ide-d",
"main": "./dist/ide-d.js",
"version": "0.5.2",
"description": "D language and IDE support for Atom",
"repository": "https://github.com/Pure-D/atom-ide-d",
"license": "MIT",
"main": "./dist/ide-d.js",
"scripts": {
"build": "cross-env NODE_ENV=production parcel build ./src/ide-d.ts --detailed-report",
"build-commit": "build-commit -o dist",
"clean": "shx rm -rf dist",
"dev": "cross-env NODE_ENV=developement parcel watch ./src/ide-d.ts",
"format": "prettier --write .",
"get.grammars": "ts-node -P ./scripts/tsconfig.json ./scripts/get-grammars.ts",
"get.servers": "ts-node -P ./scripts/tsconfig.json ./scripts/get-servers.ts",
"lint": "eslint . --fix",
"prepare": "npm run get.servers && npm run build",
"test": "atom --test spec",
"test.format": "prettier . --check",
"test.lint": "eslint .",
"tsc.dev": "tsc -p src/tsconfig.json --watch"
},
"prettier": "prettier-config-atomic",
"dependencies": {
"atom-languageclient": "1.16.1",
"atom-package-deps": "^8.0.0",
"fs-extra": "^10.0.0",
"semver": "^7.3.5"
},
"devDependencies": {
"@terascope/fetch-github-release": "^0.8.7",
"@types/atom": "1.40.11",
"@types/decompress": "^4.2.4",
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.11.9",
"@types/semver": "^7.3.9",
"atom-jasmine3-test-runner": "^5.2.9",
"build-commit": "0.1.4",
"cross-env": "7.0.3",
"decompress": "^4.2.1",
"decompress-tarxz": "^3.0.0",
"eslint-config-atomic": "^1.16.5",
"gitly": "^2.1.5",
"parcel": "2.0.1",
"prettier-config-atomic": "^3.0.1",
"shx": "0.3.3",
"terser-config-atomic": "^0.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"engines": {
"atom": ">=1.52.0 <2.0.0",
"electron": "^6.1.12"
},
"keywords": [
"d",
"dcd",
Expand All @@ -14,47 +63,14 @@
"lint",
"format"
],
"repository": "https://github.com/Pure-D/atom-ide-d",
"license": "MIT",
"engines": {
"atom": ">=1.52.0 <2.0.0",
"electron": "^6.1.12"
},
"scripts": {
"format": "prettier --write .",
"test.format": "prettier . --check",
"lint": "eslint . --fix",
"test.lint": "eslint .",
"test": "atom --test spec",
"clean": "shx rm -rf dist",
"tsc.dev": "tsc -p src/tsconfig.json --watch",
"dev": "cross-env NODE_ENV=developement parcel watch ./src/ide-d.ts",
"build": "cross-env NODE_ENV=production parcel build ./src/ide-d.ts --detailed-report",
"get.grammars": "ts-node -P ./scripts/tsconfig.json ./scripts/get-grammars.ts",
"get.servers": "ts-node -P ./scripts/tsconfig.json ./scripts/get-servers.ts",
"build-commit": "build-commit -o dist",
"prepare": "npm run get.servers && npm run build"
},
"targets": {
"main": {
"context": "electron-renderer",
"includeNodeModules": {
"atom": false,
"electron": false,
"atom-languageclient": false,
"fs-extra": false
},
"isLibrary": true
}
},
"prettier": "prettier-config-atomic",
"atomTestRunner": "./spec/runner",
"activationHooks": [
"core:loaded-shell-environment"
],
"enhancedScopes": [
"source.d"
],
"atomTestRunner": "./spec/runner",
"binaryDependencies": {
"serve-d": "0.7.0",
"dcd": "0.13.6"
},
"consumedServices": {
"linter-indie": {
"versions": {
Expand All @@ -67,6 +83,17 @@
}
}
},
"enhancedScopes": [
"source.d"
],
"package-deps": [
"atom-ide-base"
],
"pnpm": {
"overrides": {
"lzma-native": "8.0.1"
}
},
"providedServices": {
"autocomplete.provider": {
"versions": {
Expand Down Expand Up @@ -99,38 +126,18 @@
}
}
},
"devDependencies": {
"@terascope/fetch-github-release": "^0.7.7",
"@types/atom": "1.40.11",
"@types/decompress": "^4.2.4",
"@types/fs-extra": "^9.0.12",
"@types/node": "^16.3.3",
"@types/semver": "^7.3.7",
"atom-jasmine3-test-runner": "^5.2.7",
"build-commit": "0.1.4",
"cross-env": "7.0.3",
"decompress": "^4.2.1",
"decompress-tarxz": "^3.0.0",
"eslint-config-atomic": "^1.16.2",
"gitly": "^2.1.2",
"parcel": "2.0.0-beta.3.1",
"prettier-config-atomic": "^2.0.5",
"shx": "0.3.3",
"terser-config-atomic": "^0.1.1",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"atom-languageclient": "1.14.1",
"atom-package-deps": "^7.2.3",
"fs-extra": "^10.0.0",
"semver": "^7.3.5"
},
"package-deps": [
"atom-ide-base"
],
"bundledDependencies": {
"serve-d": "0.7.0-beta.7",
"dcd": "0.13.6"
"targets": {
"main": {
"context": "electron-renderer",
"includeNodeModules": {
"atom": false,
"electron": false,
"atom-languageclient": false,
"atom-package-deps": false,
"fs-extra": false
},
"isLibrary": true,
"optimize": true
}
}
}
Loading

0 comments on commit eb31c2f

Please sign in to comment.