-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "repack-utils",
"version": "0.1.1",
"description": "Repack utils",
"homepage": "https://github.com/dbuarque/repack-utils",
"main": "dist/index.js",
"scripts": {
"build": "./node_modules/.bin/babel src -d dist -s",
"start": "./node_modules/.bin/nodemon src/index.js --exec ./node_modules/.bin/babel-node --presets es2015,stage-0",
"test": "./node_modules/.bin/mocha ./tests/* --compilers js:babel-register",
"preversion": "npm test",
"version": "npm run build && git add -A dist",
"postversion": "git push origin master && git push --tags"
},
"keywords": [
"repack",
"repack-utils",
"cli",
"interactive"
],
"private": false,
"bugs": {
"url": "https://github.com/dbuarque/repack-utils/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dbuarque/repack-utils.git"
},
"author": "Diogenes Buarque Ianakiara",
"contributors": [
"David Ianakiara <[email protected]>"
],
"license": "Apache License, Version 2.0",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.4.3",
"debug": "^2.2.0",
"mocha": "^2.3.4",
"nodemon": "^1.8.1",
"should": "^8.2.0"
},
"dependencies": {
"inquirer": "^0.11.3",
"vorpal": "^1.6.1",
"vorpal-grep": "0.0.11",
"vorpal-less": "0.0.12",
"vorpal-repl": "^1.1.8",
"vorpal-use": "^1.0.1",
"path": "^0.12.7"
}
}