forked from marcioj/babel-plugin-angular-annotate
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "@jetbrains/babel-plugin-angular-annotate",
"version": "2.0.5",
"description": "Make angular dependency annotation minification proof",
"repository": "marcioj/babel-plugin-angular-annotate",
"author": {
"name": "Marcio Junior",
"email": "marciojunior1991@gmail.com",
"url": "https://github.com/marcioj"
},
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"babel-plugin"
],
"scripts": {
"build": "babel src --out-dir lib --copy-files",
"lint": "eslint src",
"mocha": "mocha --require babel-core/register --reporter spec tests/**/*-test.js",
"postversion": "git push && git push --tags",
"preversion": "npm test",
"test": "npm run lint && npm run mocha",
"test:watch": "npm run mocha -- -w",
"version": "npm run build && git add ."
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"eslint": "^3.0.1",
"mocha": "^6.0.0"
}
}