-
Notifications
You must be signed in to change notification settings - Fork 199
/
package.json
74 lines (74 loc) · 1.72 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
{
"name": "code-snippets",
"description": "Chrome DevTools code snippets ",
"version": "0.0.0-semantic-release",
"author": "Gleb Bahmutov <[email protected]>",
"bugs": {
"url": "https://github.com/bahmutov/code-snippets/issues"
},
"config": {
"pre-git": {
"commit-msg": "simple",
"pre-commit": [
"npm test"
],
"pre-push": [
"npm run size"
],
"post-commit": [],
"post-merge": []
}
},
"contributors": [],
"dependencies": {},
"devDependencies": {
"eslint-rules": "0.4.3",
"git-issues": "1.2.0",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-contrib-jshint": "0.11.3",
"grunt-deps-ok": "0.9.0",
"grunt-eslint": "2.1.0",
"grunt-gh-pages": "1.0.0",
"grunt-jscs": "1.2.0",
"grunt-nice-package": "0.10.2",
"grunt-npm2bower-sync": "0.9.1",
"jshint-summary": "0.4.0",
"matchdep": "1.0.0",
"pre-git": "3.1.2",
"semantic-release": "4.3.5"
},
"engines": {
"node": "> 0.10.*"
},
"files": [
"*.js",
"!Gruntfile.js"
],
"homepage": "https://github.com/bahmutov/code-snippets",
"keywords": [
"chrome",
"code",
"devtools",
"exploratory",
"mock",
"snippets",
"test",
"testing"
],
"license": "MIT",
"main": "first-paint.js",
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/code-snippets.git"
},
"scripts": {
"build": "grunt",
"commit": "git-issues && commit-wizard",
"grunt": "grunt",
"issues": "git-issues",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "grunt"
}
}