-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.61 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "joe-reporter-list",
"version": "2.0.1",
"description": "List Reporter for the Joe Testing Framework",
"homepage": "https://github.com/bevry/joe-reporter-list",
"license": "MIT",
"keywords": [
"joe",
"joe-reporter"
],
"author": "2012+ Bevry Pty Ltd <[email protected]> (http://bevry.me)",
"maintainers": [
"Benjamin Lupton <[email protected]> (http://balupton.com)"
],
"contributors": [
"Benjamin Lupton <[email protected]> (http://balupton.com)"
],
"bugs": {
"url": "https://github.com/bevry/joe-reporter-list/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/bevry/joe-reporter-list.git"
},
"engines": {
"node": ">=0.8"
},
"editions": [
{
"description": "Source + ESNext + Require",
"entry": "index.js",
"directory": "source",
"syntaxes": [
"javascript",
"esnext",
"require",
"const",
"spread",
"rest",
"classes"
]
},
{
"description": "Babel Compiled + ES2015 + Require",
"entry": "index.js",
"directory": "es2015",
"syntaxes": [
"javascript",
"es2015",
"require"
]
}
],
"main": "index.js",
"browser": "es2015/index.js",
"scripts": {
"our:setup": "npm install",
"our:clean": "rm -Rf ./docs ./es2015",
"our:compile": "npm run our:compile:es2015",
"our:compile:es2015": "babel ./source --out-dir ./es2015 --presets es2015",
"our:meta": "npm run our:meta:docs && npm run our:meta:projectz",
"our:meta:docs": "documentation build -f html -o ./docs -g --shallow ./source/**.js",
"our:meta:projectz": "projectz compile",
"our:verify": "npm run our:verify:eslint",
"our:verify:eslint": "eslint --fix ./source",
"our:test": "npm run our:verify && npm test",
"our:release": "npm run our:release:prepare && npm run our:release:publish && npm run our:release:tag && npm run our:release:push",
"our:release:prepare": "npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta",
"our:release:publish": "npm publish",
"our:release:tag": "git tag v$npm_package_version -a",
"our:release:push": "git push origin master && git push origin --tags",
"test": "node --harmony ./test.js"
},
"dependencies": {
"editions": "^1.3.1",
"joe-reporter-console": "^2.0.1"
},
"peerDependencies": {
"joe": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"documentation": "^4.0.0-beta5",
"eslint": "^3.9.1",
"joe": "^2.0.1",
"joe-examples": "^2.0.0",
"projectz": "^1.3.2"
}
}