riot-starter/package.json

61 lines
1.6 KiB
JSON
Raw Normal View History

2018-03-22 20:37:34 +00:00
{
"name": "riot-starter",
2019-07-21 20:59:34 +00:00
"version": "0.7.0",
"description": "rapid riotjs starter seed",
"main": "index.js",
"repository": {
"type": "git",
"url": "http: //code.negative9.net/geoff/riot-starter"
},
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"test": "tape",
"build": "./node_modules/.bin/gulp default",
"postinstall": "node ./node_modules/frontend-dependencies/index.js"
},
"keywords": [
"riot",
"riotjs",
"starter",
"seed",
"prototype"
],
"author": "Geoff Doty",
"license": "MIT",
"devDependencies": {
2020-07-11 02:54:01 +00:00
"@riotjs/compiler": "^4.9.2",
2020-07-11 02:28:56 +00:00
"frontend-dependencies": "^1.1.8",
2019-06-19 20:49:37 +00:00
"gulp": "^4.0.2",
2020-07-11 02:28:56 +00:00
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-minify": "^3.1.0",
"gulp-riot": "^1.1.5",
2020-07-11 02:28:56 +00:00
"gulp-rollup-lightweight": "^1.0.11",
2019-07-21 20:59:34 +00:00
"gulp-useref": "^3.1.6",
"vinyl-source-stream": "^2.0.0"
},
"frontendDependencies": {
"target": "public/vendor/",
"packages": {
"riot": {
2020-07-11 02:28:56 +00:00
"version": "4.13.2",
"src": "*min.js",
"namespaced": true
},
"riot-route": {
"version": "3.1.4",
2019-07-20 23:05:55 +00:00
"src": "dist/route.min.js",
"namespaced": true
},
"grayscale": {
"src": "dist/*",
"url": "https://github.com/n2geoff/grayscale",
"namespaced": true
}
}
}
2018-03-22 20:37:34 +00:00
}