-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.33 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.33 KB
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
{
"name": "atomify-js",
"version": "4.7.3",
"description": "Atomic JavaScript - Reusable front-end modules using Browserify, transforms, and templates",
"main": "index.js",
"scripts": {
"test": "tape test/*.js | tspec",
"tdd": "nodemon -x npm -i node_modules/ -e js,jsx,hbs -i test/fixtures/output/ -i test/fixtures/watch/output/ -i test/fixtures/cache/output/ -- test",
"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",
"doctoc": "doctoc README.md --maxlevel 4 && if [ -f CONTRIBUTING.md ]; then doctoc CONTRIBUTING.md --maxlevel 3; fi && if [[ $(git diff --shortstat 2> /dev/null | tail -n1) != '' ]]; then git add README.md; if [ -f CONTRIBUTING.md ]; then git add CONTRIBUTING.md; fi; git commit --no-verify -m'table of contents update'; fi"
},
"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",
"pre-push": "PATH=$PATH:/usr/local/bin:/usr/local/sbin && npm run dmn && npm run doctoc && npm test",
"update": "PATH=$PATH:/usr/local/bin:/usr/local/sbin && npm install"
}
},
"repository": {
"type": "git",
"url": "https://github.com/atomify/atomify-js.git"
},
"keywords": [
"atomic",
"atomify",
"browser",
"browserify",
"server",
"templates"
],
"contributors": [
"Daniel Erickson <techwraithpdx@gmail.com> (http://techwraith.com/)",
"Ben Clinkinbeard <ben.clinkinbeard@gmail.com> (http://benclinkinbeard.com/)"
],
"license": "MIT",
"dependencies": {
"babelify": "^6.0.2",
"brfs": "^1.4.0",
"browserify": "^13.0.1",
"browserify-incremental": "^1.5.0",
"ejsify": "^1.0.0",
"envify": "^3.4.0",
"factor-bundle": "^2.4.0",
"handlebars": "^2.0.0",
"hbsfy": "^2.2.1",
"jade": "^1.9.2",
"jadeify": "^4.1.0",
"lodash": "^3.6.0",
"minifyify": "^6.3.2",
"mkdirp": "^0.5.0",
"partialify": "^3.1.2",
"resrcify": "^1.1.0",
"stream-buffers": "^1.1.0",
"watchify": "^2.6.0",
"write-to-path": "^1.0.0"
},
"devDependencies": {
"dmn": "^1.0.10",
"doctoc": "^0.12.0",
"ghooks": "^0.3.0",
"nodemon": "^1.2.1",
"tap-spec": "^1.0.0",
"tape": "^3.0.0"
}
}