This repository has been archived by the owner on Feb 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.17 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "yaml-import-loader",
"version": "1.3.6",
"description": "A customizable YAML loader for Webpack supporting the '!import <file>' type to include different YAML files, and '!import-raw <file>' type to include the string contents of any file.",
"keywords": [
"customizable",
"import",
"loader",
"webpack",
"yaml",
"yml"
],
"homepage": "https://github.com/ngfk/yaml-import-loader#readme",
"bugs": {
"url": "https://github.com/ngfk/yaml-import-loader/issues"
},
"license": "MIT",
"author": "N.G.F. Koster <ngf.koster@outlook.com>",
"files": [
"dist"
],
"main": "dist/index",
"typings": "dist/index",
"repository": {
"type": "git",
"url": "git+https://github.com/ngfk/yaml-import-loader.git"
},
"scripts": {
"start": "npm run test:watch",
"build": "npm run clean && tsc",
"build:watch": "npm run build -- --watch",
"test": "mocha --require ts-node/register test/**/*.spec.ts",
"test:watch": "npm run test -- --watch --watch-extensions js,yml,yaml,json,html",
"clean": "rimraf ./dist",
"check": "npm run clean && npm run test && npm run build",
"prettier": "prettier --write --ignore-path config/.prettierignore **/*",
"cz": "git-cz",
"prepublishOnly": "npm run check",
"preversion": "npm run check"
},
"dependencies": {
"js-yaml": "^3.10.0",
"loader-utils": "^1.1.0"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/js-yaml": "^3.9.1",
"@types/mocha": "^5.0.0",
"@types/mock-require": "^2.0.0",
"@types/node": "^9.6.0",
"chai": "^4.1.2",
"commitizen": "^2.9.6",
"cz-customizable": "^5.2.0",
"mocha": "^5.0.5",
"mock-require": "^3.0.1",
"prettier": "^1.11.1",
"rimraf": "^2.6.2",
"ts-node": "^5.0.1",
"typescript": "^2.5.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./config/cz-config.js"
}
}
}