-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.47 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
46
47
48
49
50
51
52
53
54
55
{
"name": "node-utils",
"version": "2.0.1",
"description": "Node utilities",
"main": "dist/src/app.js",
"scripts": {
"test": "mocha dist/specs/specs.js",
"webpack-compile-test": "webpack --config webpack.test.config.js",
"webpack-watch-test": "webpack -w --config webpack.test.config.js",
"webpack-compile": "webpack --config webpack.config.js",
"webpack-watch": "webpack -w --config webpack.config.js",
"start-server": "node dist/src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gauravmahto/node-utils.git"
},
"keywords": [
"node",
"utils",
"typescript",
"webpack"
],
"author": "Gaurav",
"license": "ISC",
"bugs": {
"url": "https://github.com/gauravmahto/node-utils/issues"
},
"homepage": "https://github.com/gauravmahto/node-utils#readme",
"dependencies": {
"fancy-log": "1.3.2",
"rimraf": "2.6.2"
},
"devDependencies": {
"@types/chai": "4.1.2",
"@types/fancy-log": "1.3.0",
"@types/mocha": "5.0.0",
"@types/node": "9.6.2",
"@types/rimraf": "2.0.2",
"awesome-typescript-loader": "5.0.0",
"chai": "4.1.2",
"clean-webpack-plugin": "0.1.17",
"del": "3.0.0",
"gulp": "3.9.1",
"gulp-mocha": "5.0.0",
"gulp-sourcemaps": "2.6.4",
"gulp-typescript": "4.0.2",
"mocha": "5.0.5",
"typescript": "2.8.1",
"webpack": "4.5.0",
"webpack-cli": "2.0.14",
"webpack-merge": "4.1.2",
"webpack-node-externals": "1.7.2"
}
}