-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.05 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.05 KB
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
70
71
72
73
74
{
"name": "rangen",
"version": "1.0.0",
"description": "A random data generator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "npm run watch",
"build": "tsc && webpack --config webpack.config.js -p",
"build-demo": "webpack --config webpack.config.demo.js -p",
"watch": "webpack --config webpack.config.js -w",
"pretest": "npm run lint",
"test": "karma start karma.config.js --single-run",
"test-watch": "karma start karma.config.js",
"changelog": "conventional-changelog -i CHANGELOG.md -s -p angular -r 2",
"prepublish": "npm run build",
"lint": "tslint -c tslint.json -p tsconfig.json --type-check",
"commitmsg": "validate-commit-msg",
"gh-pages": "npm run build-demo && gh-pages -d demo"
},
"keywords": [
"random",
"shortid",
"data",
"random user",
"random image",
"500px",
"randomuser",
"id",
"password",
"random number",
"random id",
"otelnov",
"lorem ipsum",
"random text",
"thumb",
"thumbs",
"thumbnails",
"thumbnail",
"avatar",
"float",
"boolean"
],
"author": "Oleksandr Telnov <mail@telnov.com> (https://telnov.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/otelnov/rangen/issues"
},
"homepage": "https://github.com/otelnov/rangen",
"devDependencies": {
"@types/jasmine": "2.5.47",
"@types/node": "7.0.22",
"awesome-typescript-loader": "3.1.3",
"codecov": "^2.3.0",
"conventional-changelog-cli": "^1.3.2",
"gh-pages": "^1.0.0",
"husky": "^0.14.3",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine-core": "2.6.2",
"karma": "1.7.0",
"karma-chrome-launcher": "2.1.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-jasmine": "1.1.0",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "2.0.3",
"source-map-loader": "0.2.1",
"tslint": "5.3.2",
"tslint-loader": "3.5.3",
"typescript": "2.3.3",
"validate-commit-msg": "^2.14.0",
"webpack": "2.6.1",
"webpack-dev-server": "2.4.5"
}
}