-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
{
"name": "trux",
"description": "Unidirectional data layer for reactive user interfaces\"",
"version": "3.0.6",
"homepage": "https://github.com/rohan-deshpande/trux",
"repository": "git://github.com/rohan-deshpande/trux",
"author": "Rohan Deshpande <rohan@creativelifeform.com> (http://rohandeshpande.com/)",
"license": "MIT",
"scripts": {
"build": "webpack --env build",
"dev": "webpack --progress --colors --watch --env dev",
"test": "mocha --compilers js:babel-core/register --colors ./test/*.spec.js",
"test:watch": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js",
"lint": "eslint src test build",
"coverage:generate": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha test/*.js -- --require babel-register",
"coverage:publish": "./node_modules/.bin/istanbul-coveralls"
},
"files": [
"dist"
],
"keywords": [
"react",
"reactjs",
"vue",
"flux",
"unidirectional"
],
"dependencies": {
"rd-fetch": "^1.0.1",
"wolfy87-eventemitter": "^5.1.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-loader": "^1.7.1",
"istanbul": "1.1.0-alpha.1",
"istanbul-coveralls": "^1.0.3",
"jsdoc": "~3.4.0",
"json-server": "^0.9.6",
"minami": "~1.1.1",
"mocha": "^3.2.0",
"node-fetch": "^1.6.3",
"sinon": "^2.1.0",
"webpack": "^2.3.3",
"yargs": "^7.0.2"
},
"main": "dist/trux.js"
}