-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "snapdev",
"version": "0.0.0",
"engines": {
"node": ">=6.0"
},
"engineStrict": true,
"preferGlobal": true,
"description": "snapdev is a code generator that helps with speeding up development.",
"scripts": {
"test:adhoc": "node adhoc-test.js",
"test": "export NODE_ENV=test && jest --forceExit --detectOpenHandles --runInBand --testTimeout=30000",
"test:spec": "export NODE_ENV=test && jest --runInBand --testTimeout=30000 --testPathPattern=$SPEC",
"test:watch": "export NODE_ENV=test && jest --watch --runInBand --testTimeout=30000",
"test:win": "set NODE_ENV=test&& jest --watch --runInBand --testTimeout=30000",
"pretest": "eslint --ignore-path .eslintignore .",
"lint": "eslint --ignore-path .eslintignore ."
},
"bin": {
"snapdev": "./bin/snapdev.js",
"sd": "./bin/snapdev.js"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"<rootDir>/tests/*.(test).{js,jsx,ts,tsx}"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/tptshepo/snapdev.git"
},
"keywords": [
"code",
"generator",
"snapdev"
],
"author": "Tshepo Mgaga",
"license": "MIT",
"bugs": {
"url": "https://github.com/tptshepo/snapdev/issues"
},
"homepage": "https://github.com/tptshepo/snapdev#readme",
"dependencies": {
"adm-zip": "^0.4.13",
"archiver": "^5.0.0",
"babel-eslint": "^10.1.0",
"chalk": "^4.1.0",
"cli-columns": "^3.1.2",
"colors": "^1.1.2",
"config": "^3.2.4",
"copy-dir": "^1.2.0",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"fs-extra": "^9.0.1",
"home-path": "^1.0.7",
"http-status-codes": "^2.1.2",
"inquirer": "^7.0.3",
"insert-line": "^1.1.0",
"json-update": "^5.3.0",
"klaw": "^3.0.0",
"klaw-sync": "^6.0.0",
"lodash": "^4.17.19",
"minimatch": "^3.0.4",
"mkdirp": "^1.0.4",
"mustache": "^4.0.1",
"performance-now": "^2.1.0",
"prettier": "^2.1.2",
"semver": "^7.1.1",
"superagent": "^6.1.0",
"tmp-promise": "^3.0.2",
"underscore.string": "^3.3.5",
"validator": "^13.1.1",
"yaml": "^1.10.0",
"yaml-schema-validator": "^1.2.2",
"yargs": "^15.4.1"
},
"devDependencies": {
"jest": "^26.1.0",
"spawn-command": "^0.0.2-1",
"supertest": "^4.0.2"
}
}