This repository has been archived by the owner on Oct 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.53 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": "@reduct/build-tools",
"version": "1.5.6",
"description": "Shared configurations and build setup for all reduct repositories.",
"scripts": {
"test": "npm run jscs && npm run eslint && npm run babel",
"jscs": "jscs Src/",
"eslint": "eslint Src/",
"babel": "babel Src --out-dir Dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reduct/build-tools.git"
},
"author": "reduct",
"contributors": [
{
"name": "Tyll Weiß",
"email": "[email protected]",
"url": "https://github.com/Inkdpixels/"
},
{
"name": "André König",
"email": "[email protected]",
"url": "https://github.com/akoenig/"
},
{
"name": "Wilhelm Behncke",
"url": "https://github.com/grebaldi/"
}
],
"license": {
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
},
"bugs": {
"url": "https://github.com/reduct/build-tools/issues"
},
"homepage": "https://github.com/reduct/build-tools#readme",
"bin": {
"reduct": "Dist/Bin/Reduct.js"
},
"main": "Index.js",
"dependencies": {
"babel": "^5.8.5",
"babelify": "^6.1.3",
"browserify": "^11.2.0",
"buenos-jscs": "^0.1.7",
"chai": "^3.2.0",
"chai-spies": "^0.7.0",
"cli-color": "^1.0.0",
"derequire": "^2.0.2",
"eslint": "^1.0.0",
"jscover": "^1.0.0",
"jsdom": "^6.0.0",
"mocha": "^2.2.5",
"mocha-lcov-reporter": "0.0.2",
"uglify-files": "^0.1.1"
},
"devDependencies": {
"jscs": "^2.0.0"
}
}