-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 965 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 965 Bytes
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
{
"name": "@presenta/module-starter",
"version": "1.0.1",
"description": "",
"main": "index.js",
"unpkg": "dist/presenta-module-starter.min.js",
"module": "dist/presenta-module-starter.min.js",
"scripts": {
"start": "rollup -c --watch",
"bump": "npm run build && git add -u && git commit -m \"bump release\" && npm version patch && git push && npm publish",
"test": "browser-sync start -s -f \"dist/*, test/*\" --startPath test",
"build": "rollup -c"
},
"author": "",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"autoprefixer": "^10.4.2",
"cssnano": "^5.0.17",
"node-sass": "^7.0.1",
"rollup": "^2.68.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"standard": "^16.0.4"
}
}