This repository has been archived by the owner on Sep 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
93 lines (93 loc) · 2.41 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
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
{
"name": "mutable",
"version": "1.0.427",
"description": "Mutable state containers with dirty checking and more",
"license": "SEE LICENSE IN LICENSE.md",
"main": "dist/src/index.js",
"jsnext:main": "src/index.js",
"homepage": "https://github.com/wix/mutable",
"repository": {
"type": "git",
"url": "git@github.com:wix/mutable.git"
},
"bugs": {
"url": "https://github.com/wix/mutable/issues"
},
"directories": {
"test": "test"
},
"author": "Amir Arad <amira@wix.com> (http://github.com/amir-arad)",
"contributors": [
"Amir Arad <amira@wix.com> (http://github.com/amir-arad)"
],
"scripts": {
"clean": "rimraf ./dist",
"build:watch": "tsc -w",
"build:clean": "npm run clean && npm run build:src",
"build": "tsc",
"bundle": "webpack",
"pretest": "npm run build && npm run bundle",
"test:node": "mocha --require source-map-support/register --require dist/test-kit/index.js --reporter mocha-env-reporter 'dist/**/*.spec.js'",
"test:browser": "karma start --single-run",
"test": "npm run test:node && npm run test:browser",
"reset": "rimraf ./node_modules ./dist && npm install && npm test",
"start": "webpack-dev-server --progress --hot --inline --no-colors"
},
"devDependencies": {
"@types/chai": "4.0.1",
"@types/lodash": "4.14.66",
"@types/mocha": "2.2.41",
"@types/sinon": "2.3.1",
"@types/sinon-chai": "2.7.28",
"chai": "3.5.0",
"deep-is": "0.1.3",
"difflet": "1.0.1",
"karma": "1.7.0",
"karma-chrome-launcher": "2.2.0",
"karma-env-reporter": "1.0.13",
"karma-mocha": "1.3.0",
"mocha": "3.4.2",
"mocha-env-reporter": "2.0.4",
"mocha-loader": "1.1.1",
"rimraf": "2.6.1",
"sinon": "2.3.6",
"sinon-chai": "2.11.0",
"source-map-support": "0.4.15",
"ts-loader": "2.2.1",
"typescript": "2.3.4",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2"
},
"engines": {
"node": ">=0.12"
},
"dependencies": {
"escalate": "0.0.427",
"ifndef": "0.0.31",
"lodash": "4.17.5",
"mobx": "3.1.16"
},
"keywords": [
"flux",
"mutable",
"state",
"data",
"dirty",
"observable",
"backbone",
"relation",
"nested",
"model",
"types",
"properties",
"react-component",
"react",
"reactjs",
"reactive",
"model",
"frp",
"functional-reactive-programming",
"state management",
"data flow"
]
}