source: frontend/node_modules/jake/package.json@ cdcff72

Last change on this file since cdcff72 was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 1.0 KB
Line 
1{
2 "name": "jake",
3 "description": "JavaScript build tool, similar to Make or Rake",
4 "keywords": [
5 "build",
6 "cli",
7 "make",
8 "rake"
9 ],
10 "version": "10.9.4",
11 "author": "Matthew Eernisse <mde@fleegix.org> (http://fleegix.org)",
12 "license": "Apache-2.0",
13 "bin": {
14 "jake": "./bin/cli.js"
15 },
16 "main": "./lib/jake.js",
17 "scripts": {
18 "lint": "eslint --format codeframe \"lib/**/*.js\" \"test/**/*.js\"",
19 "lint:fix": "eslint --fix \"lib/**/*.js\" \"test/**/*.js\"",
20 "test": "./bin/cli.js test",
21 "test:ci": "npm run lint && npm run test"
22 },
23 "repository": {
24 "type": "git",
25 "url": "git://github.com/jakejs/jake.git"
26 },
27 "preferGlobal": true,
28 "dependencies": {
29 "async": "^3.2.6",
30 "filelist": "^1.0.4",
31 "picocolors": "^1.1.1"
32 },
33 "devDependencies": {
34 "@eslint/js": "^9.16.0",
35 "eslint": "^9.16.0",
36 "eslint-formatter-codeframe": "^7.32.1",
37 "globals": "^15.13.0",
38 "mocha": "^11.0.1",
39 "q": "^1.5.1"
40 },
41 "engines": {
42 "node": ">=10"
43 }
44}
Note: See TracBrowser for help on using the repository browser.