-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.11 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
{
"name": "generator-payscale-module",
"version": "0.0.5",
"description": "Generator for javascript libraries by PayScale",
"homepage": "",
"author": {
"name": "PayScale",
"email": "[email protected]",
"url": "www.payscale.com"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"yeoman-generator",
"react",
"library",
"payscale",
"node-module"
],
"devDependencies": {
"yeoman-test": "2.4.1",
"yeoman-assert": "3.1.1.",
"eslint": "6.8.0",
"eslint-config-xo-space": "0.24.0",
"jest": "25.2.7",
"jest-cli": "25.2.7"
},
"dependencies": {
"chalk": "4.0.0.",
"mkdirp": "1.0.4",
"path": "0.12.7",
"yeoman-generator": "4.7.2",
"yosay": "2.0.2"
},
"jest": {
"testEnvironment": "node"
},
"scripts": {
"prepublish": "yarn audit fix",
"pretest": "eslint . --fix",
"test": "jest"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"jest": true,
"node": true
}
},
"repository": "https://github.com/payscale/generator-payscale-module",
"license": "Apache-2.0"
}