-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "seng-config",
"version": "1.1.0",
"description": "Manages a config file by merging environments and providing a useful API",
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "shx rm -rf dist && tsc -p ./",
"test": "tsc -p ./test && karma start karma.conf.js --single-run --browsers PhantomJS",
"doc": "typedoc --out doc/typedoc/ src/",
"lint": "tslint -c tslint.json src/**/*.ts"
},
"author": "",
"homepage": "https://www.mediamonks.com/",
"license": "MIT",
"keywords": [
"seng",
"mediamonks",
"config"
],
"bugs": {
"url": "https://github.com/MediaMonks/seng-config/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MediaMonks/seng-config.git"
},
"devDependencies": {
"@types/jasmine": "^2.5.47",
"@types/node": "^7.0.12",
"coveralls": "^2.11.6",
"istanbul-instrumenter-loader": "^0.1.3",
"jasmine-core": "^2.4.1",
"karma": "^0.13.19",
"karma-coverage": "^0.5.3",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "^1.7.0",
"phantomjs-prebuilt": "^2.1.3",
"shx": "^0.2.2",
"tslint": "^3.3.0",
"typedoc": "^0.5.10",
"typescript": "^2.2.2",
"webpack": "^1.12.12"
},
"dependencies": {
"deep-assign": "^2.0.0"
}
}