-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.47 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
{
"name": "mutable2",
"version": "0.0.1",
"description": "Extensible and reactive file-system library that keeps it simple",
"license": "MIT",
"main": "dist/src/index.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "tsc -d",
"build:watch": "tsc -w",
"bundle": "webpack --progress",
"pretest": "npm run clean && npm run build && npm run bundle",
"test": "npm run test:node && npm run test:browser",
"test:node": "mocha --require dist/test/setup.js --require source-map-support/register --reporter mocha-env-reporter dist/test/*.spec.js",
"test:browser": "karma start --single-run",
"test:private": "mocha --require dist/test/setup.js --require source-map-support/register --reporter mocha-env-reporter dist/test/benchmarks.js",
"reset": "rimraf ./node_modules ./dist && npm install && npm test",
"start": "npm run clean && npm run build && concurrently --kill-others --success first 'npm run build:watch' 'webpack-dev-server --no-info'"
},
"homepage": "https://github.com/wix/mutable2#readme",
"repository": {
"type": "git",
"url": "[email protected]:wix/mutable2.git"
},
"bugs": {
"url": "https://github.com/wix/mutable2/issues"
},
"keywords": [
"mutable",
"state",
"data",
"dirty",
"observable",
"mobx",
"nested",
"model",
"types",
"properties",
"react-component",
"react",
"reactive",
"frp",
"functional-reactive-programming",
"state management",
"data flow"
],
"author": "Amir Arad <[email protected]> (http://github.com/amir-arad)",
"contributors": [
"Amir Arad <[email protected]> (http://github.com/amir-arad)"
],
"devDependencies": {
"@types/benchmark": "1.0.30",
"@types/chai": "4.0.0",
"@types/mocha": "2.2.41",
"@types/sinon": "2.3.1",
"@types/sinon-chai": "2.7.28",
"benchmark": "2.1.4",
"chai": "3.5.0",
"chai-subset": "1.5.0",
"concurrently": "3.4.0",
"glob": "7.1.2",
"karma": "1.7.0",
"karma-chrome-launcher": "2.1.1",
"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.4",
"sinon-chai": "2.11.0",
"source-map-support": "0.4.15",
"typescript": "2.4.0",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2"
},
"engines": {
"node": ">=0.12"
},
"dependencies": {
"ifndef": "0.0.19",
"mobx": "3.1.15",
"tslib": "1.7.1"
}
}