-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.59 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
56
57
58
59
60
61
{
"name": "inline-source-cli",
"version": "2.0.0",
"description": "CLI for inline-source",
"main": "dist/index.js",
"bin": {
"inline-source": "./dist/index.js"
},
"scripts": {
"build": "babel src -d dist -s",
"format": "prettier --write './{src,test}/**/*.{js,json,css}'",
"prebuild": "mkdirp dist",
"lint": "eslint src",
"pretest": "mkdirp test/out",
"test": "mocha --timeout 5000",
"prepare": "npm run build",
"release": "npm run build && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git://github.com/popeindustries/inline-source-cli.git"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.0.1",
"mkdirp": "^0.5.1",
"mocha": "^6.2.0",
"prettier": "^1.18.2"
},
"bugs": {
"url": "https://github.com/popeindustries/inline-source-cli"
},
"homepage": "https://github.com/popeindustries/inline-source-cli",
"keywords": [
"inline",
"source",
"cli",
"inliner"
],
"engines": {
"node": ">=8.3.0"
},
"author": "Jason Miller <jason@developit.ca>",
"license": "MIT",
"dependencies": {
"inline-source": "^7.1.0",
"yargs": "^14.2.0"
},
"prettier": {
"arrowParens": "always",
"htmlWhitespaceSensitivity": "strict",
"printWidth": 80,
"singleQuote": true
}
}