-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
36 lines (36 loc) · 881 Bytes
/
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
{
"name": "fast-sourcemap-concat",
"version": "1.4.0",
"description": "Concatenate files while generating or propagating sourcemaps.",
"main": "lib/index.js",
"scripts": {
"test": "mocha --inline-diffs",
"test:debug": "mocha --no-timeouts debug"
},
"files": [
"lib"
],
"repository": "https://github.com/ef4/fast-sourcemap-concat",
"author": "Edward Faulkner <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^2.0.0",
"fs-extra": "^5.0.0",
"heimdalljs-logger": "^0.1.9",
"memory-streams": "^0.1.3",
"mkdirp": "^0.5.0",
"source-map": "^0.4.2",
"source-map-url": "^0.3.0",
"sourcemap-validator": "^1.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0",
"mocha-eslint": "^4.1.0",
"rimraf": "^2.6.2",
"sinon": "^1.12.2"
},
"engines": {
"node": ">= 4"
}
}