-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.81 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
{
"name": "@springernature/frontend-package-manager",
"description": "handles the creation, validation, and publication of packages",
"version": "9.0.0",
"license": "LGPL-3.0",
"keywords": [
"node",
"cli",
"npm"
],
"author": "Alex Kilgour",
"repository": {
"type": "git",
"url": "https://github.com/springernature/frontend-package-manager.git"
},
"bin": {
"sn-package-create": "./bin/create.js",
"sn-package-validate": "./bin/validate.js",
"sn-package-publish": "./bin/publish.js",
"sn-package-demo": "./bin/demo.js"
},
"scripts": {
"test": "jest --colors --verbose --coverage",
"lint": "eslint ."
},
"devDependencies": {
"@springernature/eslint-config": "^5.0.0",
"eslint": "^7.17.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-unicorn": "^28.0.1",
"jest": "^26.6.3",
"mock-fs": "^4.14.0",
"mock-os": "0.0.1",
"mock-spawn": "^0.2.6"
},
"dependencies": {
"@springernature/util-cli-reporter": "^2.0.0",
"@springernature/util-package-renderer": "^3.3.1",
"conf": "^10.1.1",
"deepmerge": "^4.2.2",
"gitignore-globs": "^0.1.1",
"globby": "^11.0.3",
"inquirer": "^7.0.0",
"listr": "^0.14.3",
"minimatch": "^3.0.4",
"npm-registry-client": "^8.6.0",
"pretty-error": "^3.0.3",
"sanitize-filename": "^1.6.3",
"semver": "^6.3.0",
"strip-ansi": "^6.0.0",
"validate-npm-package-name": "^3.0.0",
"yargs": "^16.2.0"
},
"jest": {
"testURL": "http://localhost/",
"modulePaths": [
"<rootDir>/"
],
"testRegex": "__tests__/.*\\.js$",
"collectCoverageFrom": [
"**/lib/**/*.js"
]
}
}