forked from olov/ng-annotate
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
47 lines (47 loc) · 1.22 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
44
45
46
47
{
"name": "babel-plugin-angularjs-annotate",
"version": "0.10.0",
"description": "Babel plugin to add angularjs dependency injection annotations",
"main": "babel-ng-annotate.js",
"repository": {
"type": "git",
"url": "https://github.com/schmod/babel-plugin-angularjs-annotate"
},
"dependencies": {
"@babel/code-frame": "^7.0.0",
"@babel/types": "^7.2.0",
"simple-is": "~0.2.0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babelify": "^10.0.0",
"browserify": "^13.1.0",
"chalk": "^1.1.1",
"diff": "^2.2.3",
"indent-string": "^2.1.0",
"tap-xunit": "^2.3.0",
"tape": "^4.9.0",
"watchify": "^3.11.0"
},
"keywords": [
"angular",
"angularjs",
"di",
"dependency",
"injection",
"annotate",
"annotation",
"annotations",
"transformation",
"babel-plugin"
],
"scripts": {
"lint": "eslint *.js",
"test": "node --harmony tests/tests.js | tap-xunit",
"watch": "watchify docs/repl.js -o docs/repl-browser.js -t babelify --presets env",
"build-site": "browserify docs/repl.js -o docs/repl-browser.js -t babelify --presets env"
},
"author": "Andrew Schmadel",
"license": "MIT"
}