This repository has been archived by the owner on Dec 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "awsps",
"version": "1.0.0-alpha.3",
"description": "AWS Profile Switcher",
"main": "dist/index.min.js",
"license": "MIT",
"scripts": {
"clean": "rimraf ./lib && mkdir lib",
"clean:test": "rimraf ./test/output && mkdir test/output",
"clean:compile": "rimraf ./lib/compiled",
"build:rollup": "rollup -c",
"build": "npm run build:rollup",
"test": "npm run clean:test && mocha --require @babel/register"
},
"bin": {
"awsps": "./bin/awsps"
},
"keywords": [],
"author": "Jacob Baring <owari@waifu.club>",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@babel/runtime": "^7.3.4",
"chalk": "^2.4.2",
"commander": "^2.19.0",
"dotenv": "^6.2.0",
"ini": "^1.3.5",
"inquirer": "^6.2.2",
"promptly": "^3.0.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"babel-plugin-module-resolver": "^3.2.0",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-import": "^2.10.0",
"mocha": "^4.1.0",
"rimraf": "^2.6.1",
"rollup": "^1.4.0",
"rollup-plugin-alias": "^1.5.1",
"rollup-plugin-babel": "^4.0.0-beta.7",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-uglify": "^6.0.2"
}
}