-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 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
39
40
41
42
43
44
{
"name": "reconfig",
"version": "3.3.0",
"description": "JavaScript configurations as they're meant to be. Kinda.",
"main": "build/reconfig.js",
"scripts": {
"test": "npm run build && RECONFIG_envKey=value RECONFIG_confKey=newValue RECONFIG_list_1_key=newValue mocha -b",
"compile": "babel reconfig.js -o build/reconfig.js",
"build": "npm run compile && uglifyjs build/reconfig.js -o build/reconfig.js --source-map build/reconfig.min.js.map",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "git://github.com/namshi/reconfig.git"
},
"files": [
"build"
],
"keywords": [
"config",
"configuration",
"no-bs"
],
"author": "Alex Nadalin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/namshi/reconfig/issues"
},
"homepage": "https://github.com/namshi/reconfig",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"lodash.isequal": "^4.4.0",
"mocha": "*",
"uglify-js": "^2.6.4"
},
"dependencies": {
"lodash": "^4.17.4"
}
}