-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.3 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
50
51
52
{
"name": "@resource-sentry/core",
"version": "1.1.1",
"description": "Bring static resources to JavaScript.",
"main": "./src/index.js",
"bin": {
"resource-sentry": "src/cli.js"
},
"scripts": {
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"doc": "doctoc --title ' ' README.md",
"start": "node ./src/cli.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NicolasSiver/resource-sentry.git"
},
"keywords": [
"resource",
"style",
"static",
"json",
"xml",
"scss",
"css",
"sass",
"less",
"text"
],
"author": "Nicolas Siver (http://siver.im)",
"license": "MIT",
"bugs": {
"url": "https://github.com/NicolasSiver/resource-sentry/issues"
},
"homepage": "https://github.com/NicolasSiver/resource-sentry#readme",
"devDependencies": {
"doctoc": "^1.4.0",
"jest": "^24.9.0"
},
"dependencies": {
"@resource-sentry/utils": "^1.1.1",
"bluebird": "^3.5.5",
"chalk": "2.4.2",
"chokidar": "3.1.1",
"eventemitter3": "4.0.0",
"minimist": "^1.2.0"
},
"engines": {
"node": ">=6.x"
}
}