speculate
Version:
Automatically generates an RPM Spec file for your Node.js project
20 lines (19 loc) • 325 B
JSON
{
"name": "my-cool-api",
"version": "1.1.1",
"scripts": {
"start": "node index.js"
},
"description": "My Cool API",
"main": "index.js",
"author": "bob@example.com",
"license": "MIT",
"spec": {
"requires": [
"python >= 2.7.14"
],
"buildRequires": [
"python >= 2.7.14"
]
}
}