-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.38 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
{
"name": "setupjs",
"version": "2.2.2",
"description": "Frontend projects configurator",
"main": "index.js",
"scripts": {
"test": "mocha",
"setup": "setupjs",
"build": "rm -rf lib/ && npx coffee -c -o lib/ src/",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git@github.com:nim579/setup.js.git"
},
"homepage": "https://github.com/nim579/setup.js",
"bin": {
"setupjs": "./bin/setup.js"
},
"keywords": [
"environment",
"development",
"tools",
"cli",
"config",
"configurate",
"setup",
"variables",
"settings"
],
"author": "Nick Iv",
"license": "MIT",
"dependencies": {
"commander": "^4.1.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"coffeescript": "^2.5.0",
"mocha": "^7.0.0"
},
"engines": {
"node": ">=10.0"
},
"directories": {
"bin": "./bin",
"lib": "./lib"
},
"setup": {
"config": "examples/config.json",
"presets": "examples/presets.json",
"envMap": "examples/env-map.json",
"defaults": "examples/defaults.json"
},
"mocha": {
"require": [
"coffeescript/register"
],
"extension": [
"coffee"
]
}
}