-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 1017 Bytes
/
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
{
"name": "plugin-pipeline-example",
"version": "0.3.10-dev",
"description": "A demo plugin to test and showcase github actions during plugin development and release",
"main": "Gruntfile.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "grunt build",
"watch": "grunt watch",
"lint:js": "grunt jshint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pantheon-systems/plugin-pipeline-example.git"
},
"author": "CMS Platform <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pantheon-systems/plugin-pipeline-example/issues"
},
"homepage": "https://github.com/pantheon-systems/plugin-pipeline-example#readme",
"dependencies": {
"grunt": "^1.6.1",
"grunt-autoprefixer": "^3.0",
"grunt-contrib-cssmin": "^5.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-sass": "^3.1.0",
"node-sass": "^9.0.0"
}
}