-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.76 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
{
"name": "cartiv",
"version": "0.2.1",
"description": "Super simple implementation of the flux architecture. The core is based on reflux, but it's reactive, and much more fun! No dispatcher, no reducers, no explicit actions, and definitely no ugly switch statements, would you believe that?",
"main": "lib/index.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yonatanmn/cartiv.git"
},
"keywords": [
"flux",
"react",
"model",
"mvc",
"state",
"store",
"event",
"events",
"connect",
"es6 classes",
"decorator"
],
"author": {
"name": "Yonatan Schreiber",
"email": "yonatnamn@gmail.com"
},
"license": "ISC",
"dependencies": {
"reflux-core": "^0.3.0",
"babel-runtime": "^6.6.1"
},
"homepage": "https://github.com/yonatanmn/cartiv",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/yonatanmn/cartiv/issues"
},
"scripts": {
"build": "babel -d lib/ src/",
"watch": "npm run build -- --watch",
"lint": "eslint src examples",
"test": "mocha --compilers js:babel-register --recursive",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-eslint": "^5.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.7.2",
"cross-env": "^1.0.7",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-react": "^4.2.3",
"expect.js": "^0.3.1",
"jsdom": "^8.4.1",
"mocha": "^2.4.5",
"react": "^15.0.1",
"react-addons-test-utils": "^15.0.1"
}
}