UNPKG

3.04 kBJSONView Raw
1{
2 "name": "@asset-pipe/client",
3 "version": "4.0.0",
4 "author": "Trygve Lie <post@trygve-lie.com>",
5 "files": [
6 "bin",
7 "lib"
8 ],
9 "description": "Asset pipe client",
10 "main": "./lib/main.js",
11 "bin": "./bin/cli.js",
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/asset-pipe/asset-pipe-client.git"
15 },
16 "keywords": [
17 "assets"
18 ],
19 "contributors": [
20 "Trygve Lie <post@trygve-lie.com>",
21 "Richard Walker <digitalsadhu@gmail.com>",
22 "Sveinung Røsaker <sveinung.rosaker@gmail.com>",
23 "Trygve Lie (http://www.trygve-lie.com/)",
24 "Sveinung Røsaker (https://github.com/sveisvei)",
25 "Greenkeeper (http://greenkeeper.io/)",
26 "Richard Walker (https://github.com/digitalsadhu)",
27 "Simen Bekkhus (https://github.com/SimenB)",
28 "greenkeeper[bot] (http://github.com/apps/greenkeeper)"
29 ],
30 "bugs": {
31 "url": "https://github.com/asset-pipe/asset-pipe-client/issues"
32 },
33 "license": "MIT",
34 "publishConfig": {
35 "access": "public"
36 },
37 "dependencies": {
38 "@asset-pipe/common": "^3.0.1",
39 "@asset-pipe/css-writer": "^2.0.2",
40 "@asset-pipe/dev-middleware": "^2.0.6",
41 "@asset-pipe/js-writer": "^2.0.2",
42 "@metrics/client": "^1.0.0",
43 "JSONStream": "^1.3.3",
44 "abslog": "^2.0.0",
45 "boom": "^7.2.0",
46 "commander": "^2.16.0",
47 "is-stream": "^1.1.0",
48 "joi": "^13.5.2",
49 "ow": "^0.6.0",
50 "request": "^2.87.0"
51 },
52 "devDependencies": {
53 "@asset-pipe/server": "^5.10.0",
54 "asset-pipe-test-es5a": "^1.0.0",
55 "asset-pipe-test-es5b": "^1.0.0",
56 "body-parser": "^1.18.3",
57 "commitizen": "^2.10.1",
58 "cz-conventional-changelog": "^2.0.0",
59 "eslint": "^5.0.0",
60 "eslint-config-finn": "^3.0.0",
61 "eslint-config-finn-prettier": "^3.0.1",
62 "express": "^4.16.3",
63 "husky": "^0.14.3",
64 "jest": "^23.4.2",
65 "lint-staged": "^7.2.0",
66 "prettier": "^1.14.0",
67 "projectz": "^1.4.0",
68 "semantic-release": "^15.9.3",
69 "supertest": "^3.1.0",
70 "travis-deploy-once": "^5.0.0"
71 },
72 "scripts": {
73 "lint:format": "eslint --fix .",
74 "lint": "eslint .",
75 "test": "jest --coverage",
76 "precommit": "lint-staged",
77 "cm": "git-cz",
78 "readme": "projectz compile",
79 "semantic-release": "semantic-release",
80 "travis-deploy-once": "travis-deploy-once"
81 },
82 "engines": {
83 "node": ">=8.9"
84 },
85 "jest": {
86 "clearMocks": true,
87 "coverageThreshold": {
88 "global": {
89 "branches": 100,
90 "functions": 100,
91 "lines": 100,
92 "statements": 100
93 }
94 },
95 "testURL": "http://localhost"
96 },
97 "lint-staged": {
98 "*.js": [
99 "eslint --fix --config ./.eslintrc",
100 "git add"
101 ],
102 "{package.json,README.md,LICENSE.md}": [
103 "projectz compile",
104 "git add"
105 ]
106 },
107 "config": {
108 "commitizen": {
109 "path": "cz-conventional-changelog"
110 }
111 },
112 "badges": {
113 "list": [
114 "travisci",
115 "npmversion",
116 "daviddm",
117 "daviddmdev"
118 ]
119 },
120 "maintainers": [],
121 "prettier": {
122 "singleQuote": true
123 }
124}