-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
59 lines (59 loc) · 1.85 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
{
"name": "babel-plugin-transform-assets-import-to-string",
"version": "1.2.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/yeojz/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": "Gerald Yeo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yeojz/babel-plugin-transform-assets-import-to-string/issues"
},
"homepage": "https://github.com/yeojz/babel-plugin-transform-assets-import-to-string#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.0.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"eslint": "^5.3.0",
"eslint-config-prettier": "^3.0.0",
"eslint-plugin-prettier": "^2.6.2",
"mocha": "^6.0.0",
"nyc": "^12.0.2",
"prettier": "^1.14.0",
"rimraf": "^2.6.1"
},
"dependencies": {}
}