forked from platformsh/platformsh-nodejs-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.13 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
{
"name": "platformsh",
"version": "0.0.3",
"description": "Helper for running nodejs applications on Platform.sh",
"main": "lib/platformsh.min.js",
"keywords": [
"platformsh",
"paas"
],
"author": "Ori Pekelman <ori@platform.sh> (https://platform.sh)",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/platformsh/platformsh-nodejs-helper/issues"
},
"directories": {
"lib": "lib",
"src": "src",
"test": "tests"
},
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js src/",
"build": "mkdir -p ./lib && npm run lint && uglifyjs --compress --mangle -o lib/platformsh.min.js -- src/platformsh.js",
"test": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/platformsh/platformsh-nodejs-helper.git"
},
"homepage": "https://github.com/platformsh/platformsh-nodejs-helper#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-shallow-deep-equal": "^1.4.6",
"eslint": "^3.19.0",
"mocha": "^3.4.1",
"mock-require": "^2.0.2",
"uglify-js": "git+https://github.com/mishoo/UglifyJS2.git#harmony"
}
}