-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.33 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
45
46
47
48
49
50
51
{
"name": "Paw-AzureSASTokenDynamicValue",
"version": "1.0.0",
"description": "Dynamic Value Paw extension to generate an Azure Shared Access Signature",
"main": "src/AzureSASDynamicValue.js",
"repository": "git@github.com:chatter/Paw-AzureSASDynamicValue.git",
"author": "Curtis Hatter <mitchell.hatter@gmail.com>",
"license": "MIT",
"private": true,
"engine": {
"node": ">=6.11.5"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-typescript": "^7.7.2",
"@types/crypto-js": "^3.1.43",
"@types/jest": "^25.1.0",
"babel-jest": "^24.7.1",
"jest": "^24.1.0",
"prettier": "^2.0.0",
"ts-loader": "^6.0.0",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7"
},
"dependencies": {
"crypto-js": "^4.0.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/typescript"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"scripts": {
"build": "rm -rf build/ && yarn webpack --bail --display-error-details",
"lint": "tslint --project .",
"test": "jest --coverage"
}
}