forked from GorillaStack/auto-tag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.22 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
32
33
34
35
36
37
38
39
{
"name": "autotag",
"version": "1.0.0",
"description": "Autotagging for AWS resources",
"main": "autotag.js",
"private": true,
"dependencies": {
"aws-sdk": "^2.493.0",
"babel-polyfill": "^6.7.4",
"lodash": "^4.17.14"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"jasmine": "^3.4.0",
"mock-require": "^1.2.1",
"rimraf": "^2.6.3"
},
"scripts": {
"compile": "rimraf lib/ && babel --config-file ./babelrc-node -d lib src",
"compile:dev": "rimraf lib/ && babel --config-file ./babelrc-node --watch -d lib src",
"lint": "node_modules/.bin/eslint src spec --cache",
"lint:fix": "node_modules/.bin/eslint src spec --fix --cache",
"test": "babel-node --config-file ./babelrc-node ./node_modules/.bin/jasmine --random=false",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "[email protected]:GorillaStack/autotag.git"
},
"author": "Elliott Spira",
"license": "ISC",
"homepage": "https://bitbucket.org/gorillastack/autotag#readme"
}