-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "@fmtk/cfnspec",
"version": "0.2.4",
"main": "lib/index.js",
"author": "Gordon Leigh <[email protected]>",
"repository": "https://github.com/futurematik/cfnspec",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"src/",
"lib/",
"dist/"
],
"scripts": {
"build": "yarn clean && yarn lint && yarn compile && yarn test",
"bumpfeat": "npm version minor && npm publish",
"bumpfix": "npm version patch && npm publish",
"bumpmajor": "npm version major && npm publish",
"compile": "tsc",
"clean": "rm -rf lib/ dist/",
"lint": "eslint src/ --ext=ts,tsx",
"postversion": "git push --follow-tags",
"prepare": "yarn build",
"preversion": "yarn build",
"test": "jest",
"watch": "tsc -w --incremental"
},
"dependencies": {
"@fmtk/validation": "^3.5.3"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.2",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
}
}