-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.63 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.63 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "conditional-install",
"version": "1.0.3",
"main": "./lib/index.js",
"module": "./src/index.js",
"bin": {
"conditional-install": "./conditional-install.js"
},
"exports": {
".": {
"import": "./src/index.js",
"require": "./lib/index.js"
}
},
"description": "Install conditional dependencies",
"keywords": [
"npm",
"yarn",
"conditional",
"dependencies",
"package"
],
"homepage": "https://github.com/iLib-js/conditionalInstall",
"bugs": "https://github.com/iLib-js/conditionalInstall/issues",
"email": "marketing@translationcircle.com",
"license": "Apache-2.0",
"author": {
"name": "Edwin Hoogerbeets",
"web": "http://www.translationcircle.com/",
"email": "edwin@translationcircle.com"
},
"contributors": [
{
"name": "Edwin Hoogerbeets",
"email": "ehoogerbeets@gmail.com"
}
],
"files": [
"src",
"lib",
"conditional-install.js",
"docs",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git@github.com:iLib-js/conditionalInstall.git"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"build": "npm-run-all build:prod build:pkg",
"build:prod": "grunt babel --mode=prod",
"build:dev": "grunt babel --mode=dev",
"build:pkg": "echo '{\"type\": \"commonjs\"}' > lib/package.json",
"dist": "npm-run-all doc build:prod build:pkg; npm pack",
"test": "npm run test:all",
"test:cli": "LANG=en_US.UTF8 npm run build:dev ; node --experimental-vm-modules node_modules/.bin/jest --env=node",
"test:watch": "LANG=en_US.UTF8 node --experimental-vm-modules node_modules/.bin/jest --watchAll",
"test:all": "npm-run-all test:cli",
"test:install": "node conditional-install.js",
"debug": "npm run build:dev ; node --experimental-vm-modules --inspect-brk node_modules/.bin/jest -i",
"clean": "git clean -f -d src test; rm -rf lib",
"doc": "mkdir -p docs ; jsdoc2md -c jsdoc.json --separators --source src/* -m table > docs/conditionalInstall.md",
"doc:html": "jsdoc -c jsdoc.json",
"prepare": "npm-run-all build:dev test:install"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@babel/preset-env": "^7.28.5",
"@babel/runtime": "^7.28.4",
"docdash": "^2.0.2",
"grunt": "^1.6.1",
"grunt-babel": "^8.0.0",
"grunt-cli": "^1.5.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-uglify": "^5.2.2",
"jsdoc": "^4.0.5",
"jsdoc-to-markdown": "^8.0.3",
"load-grunt-tasks": "^5.1.0",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"core-js": "^3.46.0",
"expressionparser": "^1.1.9",
"node-fetch": "^2.7.0",
"semver": "^7.7.3"
},
"conditionalDependencies": {
"process.versions.node < 14.0.0": {
"jest": "^26.0.0",
"jest-mock": "^26.0.0",
"expect": "^26.0.0"
},
"process.versions.node >= 14.0.0": {
"jest": "^29.0.0",
"jest-mock": "^29.0.0",
"expect": "^29.0.0"
},
"process.versions.node < 16.0.0": {
"babel-plugin-module-resolver": "^4.0.0"
},
"process.versions.node >= 16.0.0": {
"babel-plugin-module-resolver": "^5.0.0"
}
}
}