-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 897 Bytes
/
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
{
"name": "babel-plugin-inline-json-import",
"version": "0.3.2",
"description": "Inlines JSON file imports straight into JS code",
"main": "build/index.js",
"directories": {
"test": "test"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"mocha": "^6.0.2",
"tmp": "^0.0.33"
},
"scripts": {
"build": "babel src -d build",
"test": "mocha",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yggie/babel-plugin-inline-json-import.git"
},
"author": "Bryan Yap",
"license": "MIT",
"bugs": {
"url": "https://github.com/yggie/babel-plugin-inline-json-import/issues"
},
"homepage": "https://github.com/yggie/babel-plugin-inline-json-import#readme",
"dependencies": {
"decache": "^4.5.1"
}
}