-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.6 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
{
"name": "@easy-webpack/config-env-development",
"description": "Easy Webpack configuration function for env-development",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "TS_NODE_FAST=true TS_NODE_NO_PROJECT=true ava",
"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/easy-webpack/config-env-development.git"
},
"keywords": [
"env-development",
"webpack",
"easy",
"configurator",
"configuration",
"config",
"simple"
],
"author": "Bazyli Brzóska <bazyli.brzoska@gmail.com> (https://invent.life)",
"license": "MIT",
"bugs": {
"url": "https://github.com/easy-webpack/config-env-development/issues"
},
"homepage": "https://github.com/easy-webpack/config-env-development#readme",
"devDependencies": {
"@types/debug": "0.0.29",
"@types/lodash": "^4.14.38",
"@types/node": "^6.0.46",
"@types/source-map": "^0.1.29",
"@types/webpack": "^1.12.35",
"ava": "^0.16.0",
"greenkeeper-postpublish": "^1.0.1",
"rimraf": "^2.5.4",
"semantic-release": "^4.3.5",
"ts-node": "^1.6.1",
"tslint": "^3.15.1",
"tslint-config-standard": "^1.5.0",
"typescript": "^2.0.6"
},
"dependencies": {},
"peerDependencies": {
"@easy-webpack/core": "*"
},
"ava": {
"files": [
"test/**/*.{ts,js}"
],
"tap": false,
"require": [
"ts-node/register"
]
}
}