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
|
{
"name": "bitmask_js",
"version": "0.0.1",
"description": "bitmask user interface in javascript",
"license": "GPL-3.0",
"homepage": "https://bitmask.net",
"repository": "https://leap.se/git/bitmask_client.git",
"dependencies": {
"file-loader": "^0.11.1",
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"bootstrap": "^3.3.7",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"cheerio": "^0.22.0",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.23.1",
"enzyme": "^2.8.2",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mocha": "^3.4.1",
"react": "^15.3.2",
"react-addons-test-utils": "^15.5.1",
"react-bootstrap": "^0.30.5",
"react-dom": "^15.3.2",
"sinon": "^2.3.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"zxcvbn": "^4.4.0"
},
"scripts": {
"ui": "chromium-browser \"http://localhost:7070/#$(cat ~/.config/leap/authtoken)\"",
"watch": "NODE_ENV=development webpack --watch",
"build": "NODE_ENV=development webpack",
"build:production": "NODE_ENV=production webpack",
"test": "mocha --compilers js:babel-core/register ./test/**/*.js"
}
}
|