-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 3.47 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "UserID",
"version": "1.1.11",
"description": "Unique user ID generator.",
"keywords": [
"TypeScript",
"User ID",
"UID",
"HUID"
],
"homepage": "https://github.com/CrazySquirrel/UserID",
"bugs": {
"url": "https://github.com/CrazySquirrel/UserID/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Sergey Yastrebov <[email protected]>",
"main": "./lib/UserID.js",
"module": "./lib/UserID.js",
"browser": "./lib/UserID.js",
"jsnext:main": "./lib/UserID.js",
"types": "./lib/UserID.d.ts",
"bin": {
"UserID": "./lib/UserID.js"
},
"man": "./README.md",
"repository": {
"type": "git",
"url": "[email protected]:CrazySquirrel/UserID.git"
},
"scripts": {
"development": "NODE_ENV=development webpack --bail --config=webpack.build.config.js",
"development:watch": "NODE_ENV=development:watch webpack --config=webpack.build.config.js --watch",
"production": "NODE_ENV=production webpack --bail --config=webpack.build.config.js",
"production:watch": "NODE_ENV=production:watch webpack --config=webpack.build.config.js --watch",
"production:stat": "NODE_ENV=production:stat webpack --config=webpack.build.config.js",
"testing": "NODE_ENV=testing webpack --bail --config=webpack.build.config.js",
"testing:watch": "NODE_ENV=testing:watch webpack --config=webpack.build.config.js --watch",
"test": "rm -rf ./doc/report/ && rm -rf ./doc/coverage/ && NODE_ENV=testing karma start karma.conf.js",
"docs": "rm -rf ./doc/js/ && typedoc --mode file --target ES6 --module 'commonjs' --out ./doc/js/ ./src/ts/",
"lint": "codeclimate analyze",
"release": "standard-version && git push origin master --tags",
"commit": "git-cz -a"
},
"pre-commit": [
"lint",
"test"
],
"eslintConfig": {
"env": {
"es6": true
}
},
"dependencies": {
"AnimationFrame": "^1.x.x",
"CSLogger": "^1.x.x",
"EverCookie": "^1.x.x",
"Utils": "^1.x.x",
"btoa": "^1.1.2",
"promise-polyfill": "^6.0.2"
},
"devDependencies": {
"@types/jasmine": "^2.5.47",
"@types/jasmine-expect": "^3.6.1",
"@types/jasmine-matchers": "^0.2.30",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-istanbul": "^4.1.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"browser-sync": "^2.18.8",
"browser-sync-webpack-plugin": "^1.1.4",
"clean-webpack-plugin": "^0.1.16",
"commitizen": "^2.9.6",
"compression": "^1.6.2",
"compression-webpack-plugin": "^0.4.0",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.19.0",
"extract-text-webpack-plugin": "^2.1.0",
"html-loader": "^0.4.5",
"jasmine": "^2.6.0",
"jasmine-core": "^2.6.1",
"jasmine-expect": "^3.7.0",
"json-loader": "^0.5.4",
"karma": "^1.6.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-jasmine-matchers": "^3.7.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-source-map-support": "^1.2.0",
"karma-webpack": "^2.0.3",
"standard-version": "^4.0.0",
"string-replace-webpack-plugin": "https://github.com/CrazySquirrel/string-replace-webpack-plugin.git",
"ts-loader": "^2.0.3",
"tslint": "^5.2.0",
"typedoc": "^0.6.0",
"typescript": "^2.3.2",
"webpack": "^2.5.0",
"webpack-bundle-analyzer": "^2.4.0",
"webpack-notifier": "^1.5.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}