-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 KB
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
{
"name": "babel-plugin-angular-inline-template",
"version": "1.2.1",
"description": "Babel plugin for inlining templates into angular 1.X components and directives",
"main": "src/index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git://github.com/assisrafael/babel-plugin-angular-inline-template.git"
},
"keywords": [
"babel-plugin",
"angularjs",
"template"
],
"author": "Igor Rafael <igor.rafael@gmail.com>",
"contributors": [
"Dieter Geerts <dieter@dworks.be> https://www.linkedin.com/in/dieteratwork/"
],
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.4.5",
"better-log": "^1.3.3",
"html-minifier": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"chalk": "^2.4.2",
"clear": "^0.1.0",
"diff": "^4.0.1",
"eslint": "^6.0.1",
"prettier": "^1.18.2",
"standard-version": "^8.0.1",
"watch": "^1.0.2"
},
"scripts": {
"test": "node test",
"watch": "node test --watch",
"prepublishOnly": "npm test",
"release": "standard-version",
"lint": "prettier --write '{src,tests}/**/*.js' && eslint --fix '{src,tests}/**/*.js'"
}
}