-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.01 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.01 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
{
"name": "@phcode/language-support",
"description": "Language intelligence powering phoenix code, to be run in the browser/web worker env.",
"version": "1.1.0",
"keywords": [
"phoenix",
"browser",
"Language",
"intelligence"
],
"author": "arun@core.ai",
"homepage": "https://github.com/phcode-dev/language-support",
"license": "GNU-AGPL3.0",
"scripts": {
"eslint": "eslint src test",
"eslint:fix": "eslint src test --fix",
"_copyTest": "shx mkdir -p test/dist/ && shx cp -r dist/ test/",
"_build-prod": "parcel build src/worker.js --detailed-report && shx mv dist/worker.js dist/language-worker.js && shx mv dist/worker.js.map dist/language-worker.js.map",
"_build-dev": "parcel build src/worker.js --detailed-report --no-optimize && shx mv dist/worker.js dist/language-worker-debug.js && shx mv dist/worker.js.map dist/language-worker-debug.js.map",
"test-browser": "npm run serve & open-cli http://127.0.0.1:8080/test/index.html",
"build": "npm run eslint && npm run _build-dev && npm run _build-prod && npm run _copyTest",
"serve": "http-server . -p 8090 -c-1",
"bumpPatchVersion": "npm --no-git-tag-version version patch",
"bumpPatchVersionWithGitTag": "npm version patch",
"release": "npm run build && npm run bumpPatchVersionWithGitTag"
},
"repository": {
"type": "git",
"url": "https://github.com/phcode-dev/language-support"
},
"files": [
"dist/language-worker.js",
"dist/language-worker.js.map",
"dist/language-worker-debug.js",
"dist/language-worker-debug.js.map",
"LICENSE-thirdParty",
"LICENSE"
],
"devDependencies": {
"vscode-css-languageservice": "^6.0.0",
"vscode-html-languageservice": "^5.2.0",
"html-validate": "^8.20.1",
"shx": "^0.4.0",
"@babel/core": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"babel-loader": "^8.2.5",
"parcel": "2.14.1",
"path-browserify": "^1.0.1",
"process": "0.11.10",
"http-server": "14.1.1",
"eslint": "8.57.1"
},
"dependencies": {}
}