-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
36 lines (36 loc) · 951 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": "jsenv-brunch",
"version": "2.0.0",
"description": "Add support for processing .jsenv files to Brunch. Read environment values to compile to JS.",
"author": "Ryan Sorensen (https://github.com/rcs)",
"homepage": "https://github.com/rcs/jsenv-brunch",
"repository": {
"type": "git",
"url": "https://github.com/rcs/jsenv-brunch.git"
},
"main": "./index",
"license": "MIT",
"scripts": {
"preinstall": "npm install --production --ignore-scripts",
"test": "npm install --ignore-scripts && ./node_modules/.bin/mocha --require test/common.js --colors"
},
"engines": {
"node": ">=4.0",
"npm": ">=1.3.18"
},
"engineStrict": true,
"dependencies": {
"coffee-script": "^1.10.0",
"lodash": "^4.11.1"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5"
},
"contributors": [
{
"name": "Kenley Tomlin",
"url": "https://github.com/kenleytomlin"
}
]
}