-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.61 KB
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
35
36
37
38
39
40
41
42
43
44
{
"name": "js-simple-utils",
"version": "1.0.6",
"description": "A collection of Javascript utilities that we use internally",
"main": "./dist/index.js",
"repository": "https://github.com/AuxStudio/js-simple-utils.git",
"author": "shaunsaker <shaun@aux.co.za>",
"license": "MIT",
"scripts": {
"test": "jest --maxWorkers=4",
"clean": "rm -rf dist && mkdir dist",
"prebuild": "yarn run clean",
"build": "babel ./src -d ./dist --ignore **/*.test.js",
"prepublish": "yarn build && yarn test",
"publish": "npm publish",
"update-changelog": "yarn run auto-changelog && git add . && git commit -m 'Update Changelog' && git push",
"update-tags": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags",
"postpublish": "yarn run update-changelog && yarn run update-tags"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"auto-changelog": "^1.13.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.3.1",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-aux": "^0.3.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.3.1",
"prettier": "^1.16.4",
"prettier-config-aux": "^0.1.0"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": true,
"commitLimit": false
}
}