generated from kaisermann/js-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 1.07 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
{
"name": "svelte-css-vars",
"version": "0.0.2",
"author": "Christian Kaisermann <[email protected]>",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "./index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"build": "rollup -c",
"test": "jest --no-cache",
"test:watch": "jest --no-cache --watchAll",
"lint": "eslint \"src/**/*.js\"",
"format": "prettier --loglevel silent --write \"src/**/*.js\" && eslint --fix \"src/**/*.js\"",
"version": "npx conventional-changelog-cli -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"tag": "git tag -a v$npm_package_version -m 'Release v$npm_package_version'",
"release": "npm run build && npm run version && git add package.json && git commit -m \"chore: release v$npm_package_version\"",
"prepublishOnly": "npm run release && npm run tag"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-kaisermann": "0.0.3",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"rollup": "^1.19.4",
"rollup-plugin-terser": "^5.1.1"
}
}