-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
81 lines (81 loc) · 2.13 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "autocomplete-paths",
"version": "2.17.0",
"description": "Adds path autocompletion to autocomplete+",
"repository": "https://github.com/atom-community/autocomplete-paths",
"license": "MIT",
"main": "./dist/autocomplete-paths.js",
"scripts": {
"build": "cross-env NODE_ENV=production parcel build --target main lib/autocomplete-paths.js",
"build-commit": "build-commit -o dist",
"clean": "shx rm -rf dist .parcel-cache",
"dev": "cross-env NODE_ENV=development parcel watch --target main lib/autocomplete-paths.js",
"format": "prettier --write .",
"lint": "eslint . --fix",
"prepare": "npm run build",
"test": "atom --test ./spec",
"test.format": "prettier . --check",
"test.lint": "eslint ."
},
"prettier": "prettier-config-atomic",
"dependencies": {
"chokidar": "^3.5.2",
"fast-glob": "^3.2.7",
"globify-gitignore": "^0.2.1",
"minimatch": "^3.0.4",
"slash": "^4.0.0",
"underscore": "^1.13.1",
"zadeh": "^2.1.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@types/atom": "^1.40.11",
"@types/is-valid-path": "^0.1.0",
"@types/minimatch": "^5.0.0",
"@types/node": "^18.0.0",
"@types/underscore": "^1.11.3",
"atom-jasmine3-test-runner": "^5.2.9",
"babel-preset-atomic": "^5.0.0",
"build-commit": "0.1.4",
"cross-env": "7.0.3",
"eslint": "^8.0.0",
"eslint-config-atomic": "^1.16.5",
"parcel": "^2.0.1",
"prettier-config-atomic": "^3.0.1",
"shx": "0.3.4"
},
"engines": {
"atom": ">0.50.0"
},
"atomTestRunner": "./spec/runner.js",
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "getProvider"
}
}
},
"targets": {
"main": {
"context": "electron-renderer",
"engines": {
"electron": ">=5.x"
},
"includeNodeModules": {
"atom": false,
"zadeh": false,
"fsevents": false
},
"outputFormat": "commonjs",
"isLibrary": true
}
}
}