-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.66 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
{
"name": "@easy-webpack/config-pug",
"description": "Easy Webpack configuration function for pug templates",
"main": "dist/index.js",
"version": "1.0.0",
"typings": "dist/index.d.ts",
"scripts": {
"test": "TS_NODE_FAST=true TS_NODE_NO_PROJECT=true ava",
"prepublish": "typings install",
"build": "rimraf dist && tsc -p .",
"semantic-release": "npm run build && semantic-release pre && npm publish --access=public && semantic-release post",
"postpublish": "greenkeeper-postpublish"
},
"repository": {
"type": "git",
"url": "https://github.com/alpox/config-pug.git"
},
"keywords": [
"jade",
"pug",
"webpack",
"easy",
"configurator",
"configuration",
"config",
"simple"
],
"author": "Elias Bernhaut <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alpox/config-pug/issues"
},
"homepage": "https://github.com/alpox/config-pug#readme",
"devDependencies": {
"ava": "^0.15.2",
"greenkeeper-postpublish": "^1.0.0",
"semantic-release": "^4.3.5",
"ts-node": "^1.1.0",
"tslint": "^3.13.0",
"tslint-config-standard": "^1.3.0",
"typescript": "^2.0.0",
"typings": "^1.3.1"
},
"dependencies": {
"pug-loader": "^2.3.0",
"babel-core": "^6.10.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-es2015-loose-native-modules": "^1.0.0",
"regenerator-runtime": "^0.9.5"
},
"peerDependencies": {
"@easy-webpack/core": "*"
},
"ava": {
"files": [
"test/**/*.{ts,js}"
],
"tap": false,
"require": [
"ts-node/register"
]
}
}