-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1013 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1013 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
36
37
38
39
40
41
42
43
44
{
"name": "coffee-in-vue-templates-loader",
"version": "0.0.5-dev",
"license": "MIT",
"description": "Webpack-loader to use coffeescript in vue templates as attributes or interpolations.",
"author": "Benjamin Winkler [bwin]",
"repository": "github:bwin/coffee-in-vue-templates-loader",
"bugs": {
"url": "https://github.com/bwin/coffee-in-vue-templates-loader/issues"
},
"main": "index.js",
"scripts": {
"test": "yarn mocha test/**/*.spec.coffee",
"test:watch": "yarn test --reporter min --watch",
"test:coverage": "yarn nyc yarn test"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"coffeescript": "2.5.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"chai": "^4.2.0",
"mocha": "8.0.1",
"nyc": "15.1.0"
},
"files": [
"src/"
],
"mocha": {
"extension": [
"coffee"
],
"require": [
"test/register-coffee"
]
},
"nyc": {
"extension": [
".coffee"
]
}
}