-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.4 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.4 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
63
64
65
66
67
68
69
70
71
72
{
"name": "@alt-javascript/config",
"version": "2.0.1",
"description": "An extensible wrapper of the popular config package, supporting placeholder resolution, encrypted values and url fetch.",
"author": "Craig Parravicini",
"keywords": [
"config",
"property",
"properties",
"placeholder",
"variable",
"expansion",
"expand",
"encrypted",
"jasypt",
"url",
"fetch"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/alt-javascript/config#readme",
"repository": {
"type": "git",
"url": "https://github.com/alt-javascript/config"
},
"main": "index.js",
"type": "module",
"scripts": {
"lint": "npx eslint \"./*.js\" \"./test/**/*.js\" --fix",
"test": "npm run test:unit",
"test:unit": "npm run test:tdd",
"test:tdd": "mocha --require test/fixtures/index.js",
"test:bdd": "npm run cucumber",
"coverage": "npm run c8",
"mocha": "mocha --require test/fixtures/index.js",
"cucumber": "npx run-script-os",
"cucumber:windows": ".\\node_modules\\.bin\\cucumber-js.cmd features\\*.feature --publish-quiet",
"cucumber:macos:nix:default": "./node_modules/.bin/cucumber-js features\\*.feature --publish-quiet",
"c8": "c8 --reporter=json-summary --reporter=text-summary --reporter=lcov npm run test",
"bundle": "rollup -c",
"minify-iife": "terser dist/alt-javascript-configfactory-iife.js -c ",
"minify-esm": "terser dist/alt-javascript-config-esm.js -c ",
"build-iife": "npm run minify-iife -- -o dist/alt-javascript-configfactory-iife-min.js --source-map",
"build-esm": "npm run minify-esm -- -o dist/alt-javascript-config-esm-min.js --source-map",
"build": "npm run bundle && npm run build-iife && npm run build-esm"
},
"license": "MIT",
"dependencies": {
"config": "^3.3.6",
"jasypt": "^1.0.5"
},
"devDependencies": {
"@alt-javascript/boot": "^1.0.15",
"@alt-javascript/logger": "^2.0.0",
"@cucumber/cucumber": "^7.3.0",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"cucumber": "^7.0.0-rc.0",
"c8": "^7.11.0",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-cucumber": "^1.4.0",
"eslint-plugin-import": "^2.23.4",
"mocha": "^9.0.2",
"node-fetch": "^2.6.1",
"rollup": "^2.69.2",
"run-script-os": "^1.1.6",
"terser": "^5.12.0"
}
}