-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.37 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.37 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
{
"name": "@textpress/gulp-install-node-modules",
"version": "0.5.0",
"description": "Installs and trims node_modules",
"main": "lib/index.js",
"repository": "github:textpress/gulp-install-node-modules",
"license": "UNLICENSED",
"scripts": {
"bump": "gulp bump --part",
"build": "yarn run build:clean && yarn run build:lib",
"build:clean": "rimraf lib",
"build:lib": "babel -d lib src --ignore '**/__tests__/**'",
"build:flow": "flow-copy-source -v -i '**/__tests__/**' src lib",
"ci-build": "yarn run build",
"ci-release-notes": "conventional-github-releaser -p eslint"
},
"peerDependencies": {
"gulp": "*"
},
"dependencies": {
"gulp-exec": "*",
"through2": "*"
},
"devDependencies": {
"@textpress/babel-preset-textpress": "*",
"@textpress/eslint-config-textpress": "*",
"@textpress/gulp-bump-version": "*",
"babel-plugin-inline-import": "^2.0.6",
"babel-register": "^6.26.0",
"chalk": "^2.3.2",
"conventional-github-releaser": "^2.0.0",
"eslint": "^4.15.0",
"fancy-log": "^1.3.2",
"gulp": "4.0.2",
"gulp-confirm": "1.0.8",
"gulp-exec": "4.0.0",
"gulp-print": "5.0.2",
"rimraf": ">=2.6.1",
"plugin-error": "^1.0.1",
"yargs": "15.1.0"
}
}