-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 756 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 756 Bytes
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
{
"name": "webpack-source-map-support",
"version": "2.0.1",
"description": "A simple way to enable source-map support for your backend Webpack built applications",
"main": "index.js",
"scripts": {
"test": "jest"
},
"author": {
"name": "Aaron Cunnington",
"email": "azcn2503@gmail.com"
},
"license": "ISC",
"devDependencies": {
"jest": "^20.0.4",
"webpack": "^3.1.0"
},
"peerDependencies": {
"webpack": "^1.13.3"
},
"repository": {
"type": "git",
"url": "https://github.com/azcn2503/webpack-source-map-support"
},
"engines": {
"node": ">=6.9.5"
},
"dependencies": {
"source-map-support": "0.4.11"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
]
}
}