-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 883 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 883 Bytes
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": "@roundingwellos/babel-plugin-handlebars-inline-precompile",
"description": "",
"version": "3.0.1",
"repository": "thejameskyle/babel-plugin-handlebars-inline-precompile",
"license": "MIT",
"main": "lib/index.js",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"mocha": "^2.2.5",
"nyc": "^5.3.0",
"rimraf": "^2.5.0"
},
"scripts": {
"coverage": "nyc npm test",
"clean": "rimraf lib",
"prebuild": "npm run clean",
"build": "babel src -d lib",
"prepublish": "npm run build",
"test": "mocha --compilers js:@babel/register"
},
"keywords": [
"babel-plugin"
],
"dependencies": {
"@babel/helper-module-imports": "^7.0.0",
"resolve-cwd": "^1.0.0"
},
"peerDependencies": {
"handlebars": "^4.0.5"
}
}