UNPKG

3.26 kBJSONView Raw
1{
2 "name": "claycli",
3 "version": "3.9.1",
4 "description": "A command-line interface for Clay",
5 "main": "index.js",
6 "preferGlobal": true,
7 "bin": {
8 "clay": "cli/index.js"
9 },
10 "scripts": {
11 "lint": "eslint --max-warnings 0 lib cli index.js",
12 "test": "npm run lint && jest --coverage && cat ./coverage/lcov.info | coveralls",
13 "watch": "jest --watch"
14 },
15 "jest": {
16 "automock": false,
17 "collectCoverage": true,
18 "collectCoverageFrom": [
19 "**/*.js",
20 "!lib/reporters/**",
21 "!**/node_modules/**",
22 "!**/cli/**",
23 "!lib/cmd/compile/**",
24 "!**/coverage/**",
25 "!**/index.js",
26 "!lib/gulp-plugins/gulp-newer/*.js"
27 ],
28 "testPathIgnorePatterns": [
29 "/node_modules/",
30 "lib/gulp-plugins/gulp-newer/"
31 ],
32 "setupFiles": [
33 "./setup-jest.js"
34 ]
35 },
36 "pre-push": [
37 "lint"
38 ],
39 "repository": {
40 "type": "git",
41 "url": "git+https://github.com/nymag/clay-cli.git"
42 },
43 "keywords": [
44 "clay",
45 "cli"
46 ],
47 "author": "New York Media",
48 "license": "MIT",
49 "bugs": {
50 "url": "https://github.com/nymag/clay-cli/issues"
51 },
52 "homepage": "https://github.com/nymag/clay-cli#readme",
53 "devDependencies": {
54 "coveralls": "^3.0.0",
55 "eslint": "^4.17.0",
56 "jest": "^22.4.1",
57 "jest-fetch-mock": "^1.6.5",
58 "jest-mock-console": "^0.4.0"
59 },
60 "dependencies": {
61 "@babel/core": "^7.0.1",
62 "@babel/preset-env": "^7.0.0",
63 "@nymag/vueify": "^9.4.5",
64 "amphora-fs": "^1.0.2",
65 "autoprefixer": "^9.0.2",
66 "babelify": "^10.0.0",
67 "base-64": "^0.1.0",
68 "browserify": "^16.2.2",
69 "browserify-cache-api": "^3.0.1",
70 "browserify-extract-ids": "^0.1.0",
71 "browserify-extract-registry": "^0.1.0",
72 "browserify-global-pack": "^1.3.0",
73 "browserify-transform-tools": "^1.7.0",
74 "bundle-collapser": "^1.3.0",
75 "chalk": "^2.3.2",
76 "chokidar": "^2.0.4",
77 "clay-log": "^1.3.0",
78 "clayhandlebars": "^3.2.3",
79 "clayutils": "^2.5.0",
80 "date-fns": "^1.29.0",
81 "dependency-tree": "^6.1.1",
82 "detective-postcss": "^2.1.2",
83 "escape-quotes": "^1.0.2",
84 "event-stream": "3.3.4",
85 "fs-extra": "^7.0.0",
86 "get-stdin": "^5.0.1",
87 "glob": "^7.1.3",
88 "gulp": "^4.0.0",
89 "gulp-changed": "^3.2.0",
90 "gulp-concat": "^2.6.1",
91 "gulp-cssmin": "^0.2.0",
92 "gulp-group-concat": "^1.1.6",
93 "gulp-if": "^2.0.2",
94 "gulp-postcss": "^7.0.1",
95 "gulp-rename": "^1.4.0",
96 "gulp-replace": "^1.0.0",
97 "highland": "^2.13.0",
98 "home-config": "^0.1.0",
99 "isomorphic-fetch": "^2.2.1",
100 "js-yaml": "^3.10.0",
101 "kew": "^0.7.0",
102 "lodash": "^4.17.5",
103 "node-sass": "^4.9.3",
104 "nyansole": "^0.5.1",
105 "plugin-error": "^1.0.1",
106 "pluralize": "^7.0.0",
107 "postcss-import": "^11.1.0",
108 "postcss-mixins": "^6.2.0",
109 "postcss-nested": "^3.0.0",
110 "postcss-simple-vars": "^4.1.0",
111 "resolve": "^1.8.1",
112 "split-lines": "^1.1.0",
113 "string-replace-async": "^1.2.1",
114 "terminal-logger": "^0.2.3",
115 "through2": "^2.0.3",
116 "uglify-js": "^3.4.6",
117 "uglifyify": "^5.0.1",
118 "unreachable-branch-transform": "^0.5.1",
119 "update-notifier": "^2.3.0",
120 "yargs": "^11.0.0"
121 },
122 "optionalDependencies": {
123 "fsevents": "^1.2.4"
124 }
125}