-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.46 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
{
"name": "sosnail",
"version": "0.0.5",
"keywords": [
"sosnail",
"random",
"utils",
"generator",
"identicon",
"color"
],
"author": "sosnail",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sosnail/sosnail.git"
},
"scripts": {
"start": "cross-env NODE_ENV=development nodemon --watch webpack.config.js --exec webpack-dev-server --inline --hot",
"build": "cross-env NODE_ENV=production webpack",
"test": "karma start test/karma.conf.js --single-run"
},
"eslintConfig": {
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"semi": 1,
"eqeqeq": 1
}
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"cross-env": "^5.0.5",
"html-webpack-plugin": "^2.30.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-webpack": "^2.0.5",
"mocha": "^4.0.1",
"nodemon": "^1.12.0",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"crypto-js": "^3.1.9-1"
}
}