-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.57 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.57 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "brask",
"version": "1.1.11",
"description": "Task controlling",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"build": "tsc --build tsconfig.json",
"watch": "tsc --build tsconfig.json -w",
"precomit": "misc/git/create-pre-commit-file",
"test": "snyk test && mocha src/**/*.test.js --reporter spec",
"snyk-protect": "snyk protect",
"prepare": "npm run build; yarn run snyk-protect"
},
"keywords": [
"task"
],
"engines": {
"node": ">=8.0"
},
"bin": {
"task": "./dist/index.js"
},
"author": "Tonny Pham",
"license": "ISC",
"dependencies": {
"camelcase": "^5.3.1",
"colors": "^1.3.2",
"deep-extend": "^0.5.1",
"es6-template": "^1.0.4",
"inquirer": "^6.2.2",
"js-yaml": "3.13.1",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"node-rsa": "^1.0.6",
"object-path": "^0.11.4",
"pascal-case": "^2.0.1",
"semver": "^6.3.0",
"snyk": "^1.111.1",
"underscore": "^1.9.1"
},
"devDependencies": {
"@types/deep-extend": "^0.4.31",
"@types/inquirer": "0.0.43",
"@types/js-yaml": "^3.12.0",
"@types/minimist": "^1.2.0",
"@types/mkdirp": "^0.5.2",
"@types/node": "^10.12.21",
"@types/node-rsa": "^1.0.0",
"@types/object-path": "^0.11.0",
"@types/semver": "^6.0.2",
"@types/underscore": "^1.8.9",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"typescript": "~3.2.4"
},
"snyk": true
}