-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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
63
{
"name": "@opensumi/textmate-languages",
"version": "2.8.1",
"description": "",
"main": "lib/loader.js",
"module": "es/loader.js",
"scripts": {
"download": "node scripts/update-extensions.js",
"generate": "rm -rf lib && node scripts/generate.js",
"update": "npm run download && npm run generate",
"pub": "npm run update && npm run release && npm publish --access public",
"pub:beta": "npm run release -- --prerelease beta && npm publish --tag beta --access public",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/opensumi/textmate-languages.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"files": [
"lib",
"es",
"index.d.ts"
],
"typings": "index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org "
},
"devDependencies": {
"@types/bluebird": "^3.5.32",
"@types/fs-extra": "^9.0.1",
"@types/node": "^14.0.22",
"await-event": "^2.1.0",
"bluebird": "^3.7.2",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"fs-extra": "^9.1.0",
"got": "^11.8.3",
"js-yaml": "^3.14.0",
"lodash": "^4.17.19",
"mkdirp": "^1.0.4",
"prettier": "^2.0.5",
"prettier-config-standard": "^1.0.1",
"rimraf": "^3.0.2",
"standard-version": "^9.0.0",
"strip-json-comments": "^3.1.1",
"urllib": "^2.38.0",
"uuid": "^9.0.0",
"yauzl": "^2.10.0"
},
"dependencies": {
"plist": "^3.0.1"
}
}