-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
50
51
52
53
54
{
"name": "ng2-hashids",
"version": "0.1.0",
"author": "Ivan Akimov <[email protected]> (https://twitter.com/IvanAkimov)",
"license": "MIT",
"description": "Generate YouTube-like ids from numbers. Use Hashids when you do not want to expose your database ids to the user.",
"main": "index.ts",
"scripts": {
"test": "karma start"
},
"repository": {
"type": "git",
"url": "https://github.com/andymeps/ng2-hashids"
},
"dependencies": {
"@angular/core": "^2.0.0-rc.5",
"hashids": "^1.1.0",
"rxjs": "^5.0.0-beta.6",
"zone.js": "^0.6.17"
},
"devDependencies": {
"chai": "^3.5.0",
"jasmine-core": "^2.4.1",
"karma": "^1.2.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sinon": "^1.0.5",
"karma-typescript-preprocessor2": "^1.2.1",
"karma-webpack": "^1.8.0",
"mocha": "^3.0.2",
"phantomjs-prebuilt": "^2.1.12",
"sinon": "^1.17.5",
"ts-loader": "^0.8.2",
"typescript": "^1.8.10",
"webpack": "^1.13.2"
},
"keywords": [
"hashids",
"hashid",
"hash",
"ids",
"youtube",
"bitly",
"obfuscate",
"encode",
"decode",
"encrypt",
"decrypt"
]
}