forked from brackets-cont/brackets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.38 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
82
{
"name": "Brackets",
"version": "2.0.1-0",
"apiVersion": "2.0.1",
"homepage": "http://brackets.io",
"issues": {
"url": "http://github.com/brackets-cont/brackets/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/brackets-cont/brackets.git",
"branch": "",
"SHA": ""
},
"defaultExtensions": {
"eslint": "8.7.0"
},
"dependencies": {
"anymatch": "^3.1.2",
"async": "^3.2.3",
"chokidar": "^3.5.2",
"decompress-zip": "^0.3.3",
"fs-extra": "^10.0.0",
"lodash": "^4.17.21",
"npm": "^8.3.1",
"opn": "^6.0.0",
"request": "^2.88.2",
"semver": "^7.3.5",
"temp": "^0.9.4",
"ws": "^8.4.2"
},
"devDependencies": {
"eslint": "^8.7.0",
"glob": "^7.2.0",
"grunt": "^1.4.1",
"grunt-cleanempty": "^1.0.4",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-htmlmin": "^3.1.0",
"grunt-contrib-jasmine": "^3.0.0",
"grunt-contrib-less": "^3.0.0",
"grunt-contrib-requirejs": "^1.0.0",
"grunt-contrib-uglify": "^5.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^24.0.0",
"grunt-jasmine-node": "^0.3.1",
"grunt-lib-phantomjs": "^1.1.0",
"grunt-targethtml": "^0.2.6",
"grunt-template-jasmine-requirejs": "^0.2.3",
"grunt-usemin": "^3.1.1",
"husky": "^7.0.4",
"jasmine-node": "^3.0.0",
"load-grunt-tasks": "^5.1.0",
"npm-run-all": "^4.1.5",
"phantomjs": "^2.1.7",
"q": "^1.5.1",
"rewire": "^6.0.0",
"tar": "^6.1.11",
"webpack": "^5.66.0",
"xmldoc": "^1.1.2",
"zlib": "^1.0.5"
},
"scripts": {
"prepush": "npm run eslint",
"postinstall": "grunt install",
"test": "grunt test",
"testJasmine": "grunt jasmine",
"testNode": "grunt jasmine-node",
"eslint": "grunt eslint",
"build": "grunt build",
"buildPreRelease": "grunt build-prerelease"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/brackets-cont/brackets/blob/master/LICENSE"
}
]
}