This repository has been archived by the owner on Mar 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.54 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
71
72
{
"name": "@joblift/babel-plugin-transform-assets-import-to-string",
"version": "1.3.0",
"description": "Babel plugin that transforms image assets import and requires to urls / cdn",
"main": "lib/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production babel src --out-dir lib",
"clean": "rimraf lib coverage .nyc_output",
"coverage": "cross-env NODE_ENV=test nyc report --reporter=lcov",
"lint": "eslint --ext js src test/**/*.spec.*",
"test": "cross-env NODE_ENV=test npm run test:run",
"test:run": "nyc --reporter=text-summary mocha 'test/**/*.spec.js'",
"test:watch": "npm run test -- -- --watch",
"update:release-notes": "npx conventional-github-releaser -p angular",
"upload:coverage": "cross-env NODE_ENV=test nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marudor/babel-plugin-transform-assets-import-to-string.git"
},
"keywords": [
"babel",
"import",
"assets",
"cdn",
"images",
"isomorphic",
"server-side-rendering",
"babel-plugin",
"plugin",
"require",
"transform",
"string",
"universal",
"webpack"
],
"author": "joblift",
"license": "MIT",
"bugs": {
"url": "https://github.com/joblift/babel-plugin-transform-assets-import-to-string/issues"
},
"homepage": "https://github.com/joblift/babel-plugin-transform-assets-import-to-string#readme",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/register": "^7.4.0",
"babel-eslint": "^10.0.1",
"chai": "^4.0.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-joblift": "^3.4.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^3.6.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-react-hooks": "^1.6.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.4.0",
"mocha": "^6.0.0",
"nyc": "^14.1.1",
"prettier": "^1.14.0",
"rimraf": "^2.6.1"
},
"dependencies": {},
"publishConfig": {
"@joblift:registry": "https://nexus.jol.pm/repository/npm-hosted/"
}
}