-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "shrine",
"version": "1.0.0",
"description": "Boilerplate monolith repo for modular JavaScript development",
"scripts": {
"build-src": "node ./node_modules/babel-cli/bin/babel-node ./node_modules/.bin/gulp",
"test": "find . -name '*.test.js' | xargs ./node_modules/.bin/mocha --compilers js:babel-register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chandlerprall/shrine.git"
},
"keywords": [
"shrine",
"monolith",
"repo",
"build"
],
"author": "Chandler Prall <[email protected]>",
"license": "Zlib",
"bugs": {
"url": "https://github.com/chandlerprall/shrine/issues"
},
"engines": {
"npm": "^3.0.0"
},
"homepage": "https://github.com/chandlerprall/shrine#readme",
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.4.3",
"findup-sync": "^0.3.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-if": "^2.0.0",
"gulp-rename": "^1.2.2",
"gulp-util": "^3.0.7",
"mocha": "^2.4.4",
"rmdir": "^1.2.0",
"through2": "^2.0.0"
}
}