-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
{
"name": "etherjs",
"version": "1.0.0",
"description": "A minimalistic framework for creating modular, composable apps.",
"keywords": [
"ether",
"etherjs",
"frontend",
"browser",
"client-side",
"framework",
"minimalistic",
"composable"
],
"homepage": "http://etherjs.com",
"bugs": "http://github.com/darvelo/ether/issues",
"license": "MIT",
"author": {
"name": "David Arvelo",
"url": "http://davidarvelo.com"
},
"main": "./index",
"repository": {
"type": "git",
"url": "git://github.com/darvelo/ether.git"
},
"scripts": {
"build": "BABEL_ENV=build node rollup.js",
"test": "BABEL_ENV=test ./node_modules/mocha/bin/mocha --require ./test/globals.js --compilers js:babel-core/register --recursive",
"casper": "./casper-tests/run_tests.py",
"karma": "./node_modules/karma/bin/karma start"
},
"devDependencies": {
"babel": "^6.0.15",
"babel-cli": "^6.5.1",
"babel-core": "^6.1.4",
"babel-loader": "^6.2.0",
"babel-polyfill": "^6.1.19",
"babel-preset-es2015": "^6.1.4",
"babel-preset-es2015-rollup": "^1.1.1",
"casperjs": "^1.1.0-beta5",
"chai": "^3.4.1",
"isparta-loader": "^2.0.0",
"karma": "^0.13.15",
"karma-coverage": "^0.5.3",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.1.3",
"karma-sinon-chai": "^1.1.0",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.3",
"rollup": "^0.25.4",
"rollup-plugin-babel": "^2.3.9",
"rollup-plugin-uglify": "^0.2.0",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0"
}
}