-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.16 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
44
45
46
47
{
"name": "foo-utils",
"version": "1.0.0",
"title": "FooUtils",
"description": "Contains common utility methods and classes used in our plugins.",
"main": "dist/foo-utils.js",
"scripts": {
"test": "grunt default & grunt test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steveush/foo-utils.git"
},
"keywords": [
"javascript",
"utility",
"library"
],
"author": {
"name": "Steve Usher",
"url": "https://github.com/steveush"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/steveush/foo-utils/issues"
},
"homepage": "https://github.com/steveush/foo-utils#readme",
"dependencies": {
"jquery": "^3.5.1"
},
"devDependencies": {
"foodoc": "0.0.9",
"qunit": "^2.11.1",
"qunit-theme-ninja": "^2.0.0",
"grunt": "^1.0.4",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/register": "^7.12.10",
"grunt-babel": "8.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-qunit": "^4.0.0",
"grunt-contrib-uglify": "^5.0.0",
"grunt-jsdoc": "^2.4.0"
}
}