-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.55 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
42
43
44
45
46
47
48
49
{
"name": "css-source-map-rebase",
"version": "5.0.1",
"description": "Rebase your CSS assets based on a source map.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"prepack": "npm run clean && npm run build",
"prebuild": "npm run clean",
"precover": "rimraf coverage",
"test": "ts-node node_modules/tape/bin/tape test/**/test.ts | tap-spec",
"build": "tsc --project . --module commonjs --outDir dist --declaration true",
"build:doc": "typedoc src/lib --mode file --out docs --excludePrivate --excludeNotExported",
"cover": "nyc npm t",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NightlyCommit/css-source-map-rebase.git"
},
"author": "Eric MORAND",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/NightlyCommit/css-source-map-rebase/issues"
},
"homepage": "https://github.com/NightlyCommit/css-source-map-rebase#readme",
"dependencies": {
"@types/css-tree": "^1.0.3",
"convert-source-map": "^1.7.0",
"source-map": "^0.7.3"
},
"devDependencies": {
"@types/convert-source-map": "^1.5.1",
"@types/node": "^13.9.5",
"@types/node-sass": "^4.11.0",
"@types/tape": "^4.2.34",
"clean-css": "^4.2.3",
"coveralls": "^3.0.11",
"dart-sass": "^1.25.0",
"node-sass": "^4.13.1",
"nyc": "^15.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.13.2",
"ts-node": "^8.8.1",
"typedoc": "^0.17.3",
"typescript": "^3.8.3"
}
}