-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 990 Bytes
/
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
{
"name": "platformsh-config",
"version": "2.4.1",
"description": "Helper for running nodejs applications on Platform.sh",
"main": "lib/platformsh.js",
"keywords": [
"platformsh",
"paas"
],
"author": "Larry Garfield <[email protected]> (https://platform.sh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/platformsh/config-reader-nodejs/issues"
},
"directories": {
"lib": "lib",
"src": "src",
"test": "tests"
},
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js src/",
"prepare": "npm run build",
"build": "mkdir -p ./lib && cp src/platformsh.js lib/platformsh.js",
"test": "NODE_ENV=test mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/platformsh/config-reader-nodejs.git"
},
"homepage": "https://github.com/platformsh/config-reader-nodejs#readme",
"devDependencies": {
"assert": "^1.4.1",
"eslint": "^5.14.1",
"mocha": "^6.0.0"
}
}