forked from mobxjs/mobx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.8 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
{
"name": "mobx",
"version": "2.7.0",
"description": "Simple, scalable state management.",
"main": "lib/mobx.js",
"typings": "lib/mobx.d.ts",
"scripts": {
"test": "npm run quick-build && npm run tape",
"full-test": "npm run small-build && npm run build-tests && npm run use-minified && npm run tape && npm run perf",
"tape": "tape test/*.js | faucet",
"perf": "npm run small-build && PERSIST=true time node --expose-gc test/perf/index.js",
"prepublish": "npm run small-build",
"quick-build": "tsc",
"small-build": "scripts/single-file-build.sh",
"test-browser-electron": "npm run small-build && ( browserify test/*.js | tape-run )",
"test-browser-chrome": "npm run small-build && ( browserify test/*.js | tape-run --browser chrome )",
"test-browser-safari": "npm run small-build && ( browserify test/*.js -t [ babelify --presets [ es2015 ] ] | tape-run --browser safari )",
"test-browser-firefox": "npm run small-build && ( browserify test/*.js | tape-run --browser firefox )",
"test-travis": "npm run small-build && npm run build-tests && tape test/*.js test/perf/index.js && tsc && istanbul cover tape test/*.js",
"coverage": "npm run quick-build && npm run build-tests && istanbul cover tape test/*.js",
"build-tests": "npm run build-typescript-tests && npm run build-babel-tests",
"build-typescript-tests": "tsc -m commonjs -t es5 --experimentalDecorators --noImplicitAny --outDir test test/typescript-tests.ts",
"build-babel-tests": "babel test/babel/babel-tests.js -o test/babel-tests.js",
"use-minified": "cp lib/mobx.min.js lib/mobx.js",
"lint": "tslint -c tslint.json src/*.ts src/types/*.ts src/api/*.ts src/core/*.ts src/utils/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx.git"
},
"author": "Michel Weststrate",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx/issues"
},
"files": [
"lib",
"LICENSE",
"bower.json"
],
"homepage": "https://mobxjs.github.io/mobx",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"babelify": "^7.3.0",
"browserify": "^12.0.1",
"coveralls": "^2.11.4",
"faucet": "0.0.1",
"istanbul": "^0.3.21",
"iterall": "^1.0.2",
"lodash.intersection": "^3.2.0",
"tape": "^4.2.2",
"tape-run": "^2.1.0",
"typescript": "^1.8.10",
"uglify-js": "^2.6.1"
},
"dependencies": {},
"keywords": [
"mobx",
"mobservable",
"observable",
"react-component",
"react",
"reactjs",
"reactive",
"model",
"frp",
"functional-reactive-programming",
"state management",
"data flow"
]
}