-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
71 lines (71 loc) · 2.89 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
{
"name": "seeds",
"version": "2.3.1",
"description": "Seeds is a full-stack framework for rapidly building ambitious ember applications",
"bin": {
"seeds": "./bin/seeds"
},
"main": "index.js",
"preferGlobal": true,
"scripts": {
"build": "babel src --out-dir lib -x '.es6' -D ",
"watch": "babel src --out-dir lib -x '.es6' -D --watch",
"test": "npm run build && babel test/tests.es6 -o test/tests.js && mocha test/",
"lint": "eslint -c .eslintrc src/**/*.es6",
"lint-staged": "git diff --diff-filter=ACMRTUXB --cached --name-only | grep '.es6$' | grep -v 'node_modules' | grep -v 'test' | xargs eslint -c .eslintrc",
"doctoc": "doctoc README.md --title '**Seeds.js**' && if [ -f CONTRIBUTING.md ]; then doctoc CONTRIBUTING.md; fi && if [[ $(git diff --shortstat -- README.md 2> /dev/null | tail -n1) != '' || $(git diff --shortstat -- CONTRIBUTING.md 2> /dev/null | tail -n1) != '' ]]; then git add README.md CONTRIBUTING.md && git commit --no-verify -m'table of contents update'; fi",
"requireGitClean": "/bin/bash -c 'source ./scripts.sh && git_require_clean_work_tree'",
"dmn": "dmn gen -f . && if [[ $(git diff --shortstat 2> /dev/null | tail -n1) != '' ]]; then git add .npmignore && git commit --no-verify -m'update npmignore'; fi",
"gitPull": "git pull --rebase origin master",
"gitPush": "git push --follow-tags --no-verify && git push --tags --no-verify",
"release": "f () { source ./scripts.sh && npm run requireGitClean && npm run gitPull && npm run dmn && npm run doctoc && npm run build && npm run lint && npm test && npm_release public $@; }; f"
},
"config": {
"notes": "important to correct the path of npm so that the git hook doesn't error",
"ghooks": {
"pre-commit": "PATH=$PATH:/usr/local/bin:/usr/local/sbin && npm run lint-staged",
"pre-push": "PATH=$PATH:/usr/local/bin:/usr/local/sbin && npm run dmn && npm run doctoc && npm run lint && npm test",
"update": "PATH=$PATH:/usr/local/bin:/usr/local/sbin && npm install"
}
},
"repository": {
"type": "git",
"url": "terminalvelocity/seeds.js"
},
"keywords": [
"seeds",
"sails",
"ember",
"framework",
"web",
"app",
"cli"
],
"author": "John-Henry Liberty <[email protected]> (http://seedsjs.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/terminalvelocity/seeds.js/issues"
},
"homepage": "https://github.com/terminalvelocity/seeds.js",
"dependencies": {
"bower": "^1.7.7",
"cli-table": "^0.3.1",
"fs-extra": "^0.19.0",
"lodash.partition": "^3.1.1",
"lodash.startswith": "^3.0.1",
"mkdirp": "^0.5.1",
"multiline": "^1.0.2",
"rc": "^1.0.3",
"resolve": "^1.1.6",
"soil-cli": "^1.3.6"
},
"devDependencies": {
"babel": "^5.5.8",
"chai": "^2.3.0",
"dmn": "^1.0.10",
"doctoc": "^0.13.0",
"eslint": "^0.22.1",
"ghooks": "^0.3.2",
"mocha": "^2.2.5"
}
}