-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "webpack-version-file",
"version": "0.1.7",
"description": "Generates a file with your package name, version and build date",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"test": "mocha --require babel-core/register test/*.js",
"test:watch": "mocha --watch --require babel-core/register test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fknussel/webpack-version-file.git"
},
"author": {
"name": "Federico Knüssel",
"email": "[email protected]"
},
"keywords": [
"webpack version file",
"exposed version"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fknussel/webpack-version-file/issues"
},
"homepage": "https://github.com/fknussel/webpack-version-file#readme",
"dependencies": {
"chalk": "^2.1.0",
"ejs": "^3.1.8"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"mocha": "^6.2.1",
"rimraf": "^3.0.0"
}
}