forked from stonelasley/ionic-mocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
{
"name": "ionic-mocks-ens",
"version": "1.0.1",
"description": "Stubbed and Pre-mocked Ionic2+ Objects, based on stonelasley/ionic-mocks",
"repository": "[email protected]:enstain/ionic-mocks.git",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"author": "Stone C. Lasley; Andrey Zakharov",
"keywords": [
"ionic",
"ionic2",
"ionic3",
"mocks",
"mock",
"doubles"
],
"bugs": {
"url": "https://github.com/enstain/ionic-mocks"
},
"license": "MIT",
"scripts": {
"test": "karma start",
"build": "rimraf dist && tsc -d",
"lint": "tslint ./src/**/*.ts",
"version": "git add .",
"prepublish": "npm run build",
"postversion": "git push && git push --tags && npm publish",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"devDependencies": {
"@types/jasmine": "^2.5.47",
"@types/node": "^8.0.14",
"cz-conventional-changelog": "^2.0.0",
"jasmine": "^2.5.3",
"jasmine-core": "^2.6.3",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-jasmine": "^1.1.0",
"karma-typescript": "^3.0.3",
"rimraf": "^2.6.1",
"rxjs": "^5.4.2",
"semantic-release": "^6.3.6",
"tslint": "^5.5.0",
"tslint-ionic-rules": "0.0.11",
"typescript": "^2.0.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}