-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.62 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
{
"name": "babel-plugin-import-static-files",
"version": "1.0.4",
"description": "Transforms static files import and copy files to /static folder for next.js applications.",
"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",
"coveralls": "cross-env NODE_ENV=test nyc report --reporter=text-lcov | coveralls",
"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",
"build:watch": "npm run build -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahalimkara/babel-plugin-import-static-files.git"
},
"keywords": [
"nextjs",
"babel",
"import",
"static",
"images",
"cdn",
"isomorphic"
],
"author": "Abdulhalim Kara <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ahalimkara/babel-plugin-import-static-files/issues"
},
"homepage": "https://github.com/ahalimkara/babel-plugin-import-static-files#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.0.0",
"coveralls": "^2.13.1",
"cross-env": "^5.0.0",
"eslint": "^4.1.0",
"mocha": "^3.4.2",
"nyc": "^11.0.2",
"rimraf": "^2.6.1"
},
"dependencies": {
"fs-extra": "^4.0.2"
}
}