-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.11 KB
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
{
"name": "Clean",
"version": "0.1.0",
"description": "Clean - A torrent client with a focus on usability",
"main": "init.js",
"author": {
"name": "Scott Weston",
"email": "weston.scot@gmail.com"
},
"repository": "https://github.com/scwe/clean",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.22.0",
"bencode": "^0.10.0",
"bn.js": "^4.11.6",
"font-awesome": "^4.7.0",
"javascript-state-machine": "^2.3.5",
"jquery": "^3.2.1",
"materialize-css": "^0.98.2",
"parse-torrent": "*",
"pre-commit": "^1.2.2",
"randombytes": "^2.0.3",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.7",
"redux": "^3.0.0",
"redux-actions": "^1.2.1",
"redux-electron-store": "^0.4.1",
"redux-thunk": "^2.2.0",
"sha1": "^1.1.1",
"shortid": "^2.2.6",
"snazzy": "^7.0.0",
"socket.io": "*",
"standard": "^10.0.2",
"torrent-stream": "*",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.2.1",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.1.18",
"browser-sync": "^2.9.3",
"chai": "^3.4.1",
"electron": "^1.5.0",
"electron-builder": "^13.8.2",
"electron-devtools-installer": "^2.1.0",
"eslint": "^3.14.1",
"eslint-plugin-react": "^6.9.0",
"mocha": "^3.2.0",
"npm-run-all": "^4.0.1",
"redux-mock-store": "^1.2.2",
"rimraf": "^2.5.4"
},
"scripts": {
"start": "npm run develop",
"postinstall": "install-app-deps",
"develop": "npm run private:compile -- --source-maps true && run-p -r private:watch private:serve",
"test": "mocha -R spec --compilers js:babel-core/register test/**/*.spec.js",
"lint": "eslint --no-ignore scripts app test *.js",
"pack": "run-s private:clean private:compile private:build:all",
"pack:mac": "run-s private:clean private:compile private:build:mac",
"pack:win": "run-s private:clean private:compile private:build:win",
"pack:linux": "run-s private:clean private:compile private:build:linux",
"private:build:all": "build -mwl",
"private:build:mac": "build --mac",
"private:build:win": "build --win",
"private:build:linux": "build --linux",
"private:watch": "npm run private:compile -- --source-maps true --watch --skip-initial-build",
"private:serve": "babel-node scripts/serve.js",
"private:compile": "babel app/ --copy-files --out-dir build",
"private:clean": "rimraf build",
"standard": "./node_modules/standard/bin/cmd.js './src/**/*.js' './test/**/*.js' --verbose --fix | snazzy",
"standard-message": "echo 'Pre-commit standard --fix' && exit 0"
},
"pre-commit": [
"standard",
"standard-message"
],
"standard": {
"ignore": [
"src/static/js/jquery-3.1.0.js",
"src/static/js/materialize.js"
],
"globals": [
"$",
"describe",
"it"
]
}
}