-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.13 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.13 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
{
"name": "workspace-versioner",
"version": "1.1.3",
"description": "Versions all packages in a yarn workspace to a specified version",
"bin": "./lib/index.js",
"author": "Archon Information Systems",
"license": "MIT",
"scripts": {
"start": "babel-node src/index.js",
"compile": "rimraf lib && babel src -d lib",
"lint": "eslint src",
"prepublish": "yarn run lint && yarn run compile"
},
"dependencies": {
"colors": "^1.3.0",
"fs-expand": "^1.1.2",
"glob": "^7.1.2",
"json-update": "^3.0.0",
"semver": "^5.5.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.52",
"@babel/core": "^7.0.0-beta.52",
"@babel/node": "^7.0.0-beta.52",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.52",
"@babel/plugin-proposal-export-default-from": "^7.0.0-beta.52",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0-beta.52",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.52",
"@babel/preset-env": "^7.0.0-beta.52",
"@babel/register": "^7.0.0-beta.52",
"eslint": "^5.1.0",
"eslint-config-civicsource": "^9.0.0",
"rimraf": "^2.6.2"
}
}