-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "babel-plugin-inline-import",
"version": "3.0.0",
"description": "Babel plugin to make raw files importable",
"author": "Victor Duarte (Quadric ApS) <contact@quadric.net>",
"license": "MIT",
"main": "build/index.js",
"files": [
"build"
],
"keywords": [
"babel-plugin",
"graphql",
"raw",
"extension",
"wrap",
"import",
"inline"
],
"repository": "Quadric/babel-plugin-inline-import",
"scripts": {
"test": "mocha test/*.spec.js --require @babel/register --require @babel/polyfill --require config/mocha.js",
"test-watch": "mocha test/*.spec.js --require @babel/register --require @babel/polyfill --require config/mocha.js --watch",
"lint-js": "eslint plugin",
"prepare": "babel -d build/ plugin/"
},
"dependencies": {
"require-resolve": "0.0.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"mocha": "^6.1.3",
"sinon": "^7.3.2"
}
}