forked from midknight41/lab-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.74 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "lab-suite",
"version": "1.1.0",
"description": "A extremely simple tool for making lab testing suites",
"main": "./dist/lib/index.js",
"scripts": {
"prebuild": "npm run clean",
"build": "babel ./src -d dist",
"clean": "./node_modules/.bin/rimraf dist/*",
"pret": "npm run build",
"t": "lab ./dist/test/ -v -S --assert code",
"pretest": "npm run build",
"travis": "npm run test",
"test": "lab ./dist/test/ -v -S --assert code",
"premajor": "npm run test",
"major": "npm version major -m \"published to npm as v%s\" && git push --follow-tags && npm publish",
"preminor": "npm run test",
"minor": "npm version minor -m \"published to npm as v%s\" && git push --follow-tags && npm publish",
"prepatch": "npm run test",
"patch": "npm version patch -m \"published to npm as v%s\" && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/midknight41/lab-suite.git"
},
"keywords": [
"lab",
"testing",
"hapi",
"suite",
"template"
],
"author": "Chad Macey",
"license": "MIT",
"bugs": {
"url": "https://github.com/midknight41/lab-suite/issues"
},
"homepage": "https://github.com/midknight41/lab-suite#readme",
"dependencies": {
"object-mapper": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-plugin-transform-es2015-parameters": "^6.22.0",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-preset-env": "^1.1.8",
"code": "^4.0.0",
"eslint": "^3.15.0",
"lab": "^12.1.0",
"lab-testing": "^2.1.0",
"rimraf": "^2.5.4"
},
"files": [
"dist"
]
}