-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.45 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
{
"name": "project-starter",
"version": "2.0.0",
"description": "a cli tool to help you start a new project",
"main": "lib/index.js",
"module": "src/index.js",
"scripts": {
"lint": "run-p lint-*",
"lint-src": "eslint src --fix",
"lint-tests": "eslint __tests__ --fix",
"precommit": "lint-staged",
"commitmsg": "commitlint -e",
"babel": "babel src -d lib -s",
"build": "rimraf lib && npm run babel",
"prepublishOnly": "npm run build",
"test": "run-s lint test-dump",
"dump": "npm run build && rimraf dump && node bin/project-starter dump/starter",
"test-dump": "npm run dump && cd dump/starter && npm install && npm run lint && npm run jest-client",
"release": "git-directory-deploy --email travis@travis-ci.org --user 'Travis CI' --directory dump/starter --branch master --repo https://$GH_TOKEN@github.com/noamokman/project-starter-sample.git"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noamokman/project-starter.git"
},
"keywords": [
"react",
"starter",
"generator",
"project"
],
"author": {
"name": "Noam Okman",
"email": "noamokman@gmail.com",
"url": "https://github.com/noamokman"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/noamokman/project-starter/issues"
},
"homepage": "https://github.com/noamokman/project-starter#readme",
"engines": {
"node": ">=6"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "^5.2.5",
"@commitlint/config-angular": "^5.1.1",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.13.1",
"eslint-config-noamokman": "^7.2.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-lodash": "^2.5.0",
"eslint-plugin-unicorn": "^3.0.1",
"git-directory-deploy": "^1.5.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"npm-run-all": "^4.1.2",
"rimraf": "^2.6.2"
},
"dependencies": {
"caporal": "^0.9.0",
"cpr": "^3.0.1",
"execa": "^0.8.0",
"handlebars": "^4.0.11",
"p-catch-if": "^1.0.2",
"parse-github-url": "^1.0.2",
"pify": "^3.0.0",
"read-pkg": "^3.0.0",
"replace-in-file": "^3.0.0",
"snake-case": "^2.1.0",
"title-case": "^2.1.1",
"update-notifier": "^2.3.0",
"write-pkg": "^3.1.0"
},
"bin": {
"project-starter": "bin/project-starter"
}
}