forked from gruntjs/grunt-contrib-requirejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2 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
83
84
{
"name": "@prantlf/grunt-contrib-requirejs",
"description": "Optimize RequireJS projects using r.js. Forked to use a custom r.js module.",
"version": "2.0.1",
"author": "Ferdinand Prantl <[email protected]>",
"contributors": [
"Tyler Kellen (http://goingslowly.com/)",
"Tim Branyen (http://tbranyen.com/)",
"Chris Talkington (http://christalkington.com/)"
],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/grunt-contrib-requirejs/blob/master/package/LICENSE"
}
],
"homepage": "https://github.com/prantlf/grunt-contrib-requirejs#readme",
"repository": {
"type": "git",
"url": "https://github.com/prantlf/grunt-contrib-requirejs.git"
},
"bugs": {
"url": "https://github.com/prantlf/grunt-contrib-requirejs/issues"
},
"engines": {
"node": ">=0.10.0"
},
"main": "tasks/requirejs.js",
"scripts": {
"test": "grunt test",
"coverage": "c8 grunt test"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"failComment": false
}
],
"@semantic-release/git"
]
},
"c8": {
"include": "tasks",
"check-coverage": true,
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100,
"reporter": [
"lcov",
"text-summary"
]
},
"dependencies": {
"@prantlf/requirejs": "^3.0.2"
},
"devDependencies": {
"c8": "^7.13.0",
"grunt": "^1.6.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-internal": "^8.0.2",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-nodeunit": "^5.0.0"
},
"optionalDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1"
},
"keywords": [
"gruntplugin",
"requirejs",
"requirejs-optimizer"
],
"files": [
"tasks"
]
}