-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "example-grunt",
"version": "0.0.1",
"description": "An example project using Grunt",
"main": "src/main.js",
"license": "MIT",
"scripts": {
"build": "grunt build",
"compile": "grunt compile",
"clean": "grunt clean",
"test": "grunt mochaTest",
"lint": "grunt eslint",
"release": "grunt release",
"doc": "grunt jsdoc"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"@types/mocha": "^10.0.1",
"assert": "^2.0.0",
"chai": "^4.3.7",
"eslint": "^8.30.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"grunt": "^1.5.3",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^24.0.1",
"grunt-jsdoc": "^2.3.1",
"grunt-mocha-test": "^0.13.3",
"grunt-prettier": "^2.2.0",
"mocha": "^10.2.0",
"npm": "^9.2.0",
"nyc": "^15.1.0",
"sinon": "^15.0.1"
},
"dependencies": {
"@types/node": "^18.11.18",
"npm-check-updates": "^16.6.2"
}
}