-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.15 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
{
"name": "wd-cli",
"version": "0.1.0",
"description": "cli for setting working directories",
"bin": {
"wd": "./src/index.js"
},
"main": "src/index.js",
"scripts": {
"start": "NODE_ENV=production node -r @babel/register ./src/index.js",
"dev": "NODE_ENV=development nodemon -r @babel/register ./src/index.js",
"build": "mkdir -p dist && babel ./src/index.js > ./dist/index.js && chmod +x ./dist/index.js",
"clean": "rimraf dist",
"test": "echo Test not implemented yet.",
"lint": "eslint .",
"test:all": "npm run clean && npm run lint && npm run build && npm run test",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"create-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"bump": "conventional-bump"
},
"keywords": [
"wd",
"cli",
"working-directory",
"working-directories",
"developer tools",
"developer-experience"
],
"author": "Guillaume ARM",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/guillaumearm/wd-cli.git"
},
"bugs": {
"url": "https://github.com/guillaumearm/wd-cli/issues"
},
"homepage": "https://github.com/guillaumearm/wd-cli#readme",
"engines": {
"node": ">=8.9.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.40",
"@babel/core": "^7.0.0-beta.40",
"@babel/node": "^7.0.0-beta.40",
"@babel/plugin-proposal-optional-chaining": "^7.0.0-beta.40",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"@babel/preset-es2015": "^7.0.0-beta.40",
"@babel/preset-stage-0": "^7.0.0-beta.40",
"@babel/register": "^7.0.0-beta.40",
"babel-eslint": "^8.2.1",
"commitizen": "^2.9.6",
"conventional-bump": "^1.0.3",
"conventional-changelog-cli": "^1.3.13",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.17.0",
"eslint-plugin-node": "^6.0.0",
"nodemon": "^1.14.12",
"rimraf": "^2.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"ramda": "^0.25.0"
}
}