-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 1.28 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
{
"scripts": {
"generate": "yo @renke/node-lib",
"check": "eslint src test",
"watch:check": "watch \"npm run check --silent\"",
"test": "mocha --compilers js:babel-register",
"watch:test": "mocha --compilers js:babel-register --watch",
"prepublish": "npm run --production build",
"build": "babel src --out-dir lib",
"watch:build": "babel src --out-dir lib --watch"
},
"devDependencies": {
"eslint": "^1",
"babel-eslint": "^4",
"eslint-plugin-babel": "^3",
"eslint-plugin-import": "^0",
"eslint-config-import": "^0",
"mocha": "^2",
"chai": "^3",
"sinon": "^1",
"babel-cli": "^6",
"babel-register": "^6",
"babel-preset-es2015": "^6",
"babel-preset-stage-0": "^6",
"babel-preset-react": "^6",
"babel-plugin-transform-decorators-legacy": "^1",
"babel-plugin-transform-runtime": "^6"
},
"repository": "renke/babel-plugin-git-version",
"license": "ISC",
"name": "babel-plugin-git-version",
"version": "0.2.0",
"description": "Expose the current commit's hash and the name of \"nearest\" tag as constants in your code. Useful to quickly find out what version of your application is deployed.",
"private": false,
"author": {
"name": "Renke Grunwald",
"email": "[email protected]"
},
"main": "lib"
}