-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 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
{
"name": "kombibooth-settings",
"version": "0.0.1",
"description": "Kombibooth settings module",
"main": "lib/index.js",
"scripts": {
"compile": "babel --stage 0 -d lib/ src/",
"prepublish": "npm run compile",
"test": "eslint src/ spec/ && NODE_ENV=test mocha --compilers js:babel/register --timeout 30000 --reporter spec --recursive --watch-extensions .spec.js ./spec",
"watch-test": "NODE_ENV=test mocha --compilers js:babel/register --timeout 30000 --reporter spec --recursive --watch-extension .spec.js --watch --bail ./spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kombibooth/settings.git"
},
"keywords": [],
"author": "Vinícius Krolow <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kombibooth/settings/issues"
},
"homepage": "https://github.com/kombibooth/settings#readme",
"devDependencies": {
"babel": "^5.8.29",
"babel-eslint": "^4.1.3",
"chai": "^3.4.1",
"eslint": "^1.5.1",
"eslint-config-airbnb": "^0.1.0",
"mocha": "^2.3.4",
"mock-fs": "^3.5.0"
},
"dependencies": {
"os-homedir": "^1.0.1"
}
}