-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.44 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
108
109
110
{
"dependencies": {
"antd": "2.13.7",
"axios": "0.15.3",
"babel-core": "6.22.1",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.1",
"babel-loader": "6.2.10",
"babel-plugin-add-module-exports": "0.1.2",
"babel-plugin-import": "1.1.1",
"babel-plugin-react-html-attrs": "2.0.0",
"babel-plugin-transform-class-properties": "6.3.13",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-es2015": "6.24.1",
"babel-preset-es2016": "6.24.1",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"babili-webpack-plugin": "0.0.11",
"copy-to-clipboard": "3.0.8",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.26.1",
"eslint": "3.19.0",
"eslint-loader": "1.7.1",
"eslint-plugin-jest": "20.0.3",
"eslint-plugin-react": "7.0.1",
"extract-text-webpack-plugin": "2.1.0",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "0.10.1",
"gitbook-cli": "2.3.0",
"html-webpack-plugin": "2.28.0",
"immutability-helper": "2.2.0",
"jasmine-reporters": "2.2.1",
"jest": "20.0.1",
"less": "2.7.2",
"less-loader": "4.0.3",
"lodash": "4.17.4",
"mobx": "3.1.0",
"mobx-react": "4.1.0",
"moment": "2.18.1",
"node-forge": "0.7.1",
"performant-array-to-tree": "1.0.3",
"prop-type": "latest",
"rc-queue-anim": "1.0.4",
"react": "15.4.2",
"react-color": "2.13.8",
"react-copy-to-clipboard": "5.0.0",
"react-dom": "15.4.2",
"react-file-download": "0.3.4",
"react-file-reader-input": "1.1.4",
"react-keydown": "1.7.4",
"react-router-dom": "4.1.1",
"sockjs-client": "1.1.4",
"stompjs": "2.3.3",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "2.2.1"
},
"devDependencies": {
"axios-mock-adapter": "1.9.0",
"enzyme": "2.9.1",
"enzyme-to-json": "1.5.1",
"mobx-react-devtools": "4.2.13",
"react-addons-test-utils": "15.6.0",
"react-dom": "15.4.2",
"webpack-dev-server": "2.4.2"
},
"scripts": {
"clean": "rm -rf ./dist",
"dev": "webpack-dev-server --env=dev --hot --history-api-fallback",
"dist:copyAssets": "cp -rf ./src/assets ./dist",
"dist:test": "npm run clean && node_modules/.bin/webpack --env=testing --profile --colors && npm run dist:copyAssets",
"dist:prod": "npm run clean && node_modules/.bin/webpack --env=prod --profile --colors && npm run dist:copyAssets",
"docs:build": "npm run docs:clean && gitbook build ./src/docs ./dist/docs",
"docs:clean": "rm -rf ./dist/docs",
"docs:serve": "npm run docs:build && gitbook serve ./src/docs ./dist/docs",
"test": "jest --no-cache",
"test:cov": "jest --coverage --no-cache",
"test:watch": "jest --watch --no-cache"
},
"engines": {
"node": "<=6.5"
},
"jest": {
"setupTestFrameworkScriptFile": "./jasmine-setup.js",
"coverageDirectory": "./test-results/coverage",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"collectCoverageFrom": [
"src/**/*.js"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/test/__mockData__/style.js"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"name": "communikey",
"version": "0.1.0",
"main": "src/Communikey.js",
"private": true,
"description": "A simple centralized, cross-platform credential manager.",
"author": {
"name": "communicode AG",
"url": "https://communicode.de"
},
"license": "communicode AG"
}