-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.57 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
{
"name": "reactive-di",
"version": "7.0.2",
"description": "Reactive dependency injection",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"config": {
"dest": "."
},
"jsnext:main": "dist/reactive-di.es.js",
"module": "dist/reactive-di.es.js",
"main": "dist/reactive-di.js",
"umd:main": "dist/reactive-di.umd.js",
"scripts": {
"minor": "npm test && npm run build && standard-version --release-as minor && npm run postversion",
"major": "npm test && npm run build && standard-version --release-as major && npm run postversion",
"release": "npm test && npm run build && standard-version && npm run postversion",
"postversion": "git push --follow-tags origin master && npm publish",
"build": "rimraf dist && rollup -c && cp index.js.flow.tpl $npm_package_main.flow && cp index.js.flow.tpl $npm_package_module.flow",
"test": "flow check && mocha",
"test.dev": "mocha --growl --watch",
"watch": "chokidar --initial -d 2000 -t 1000 'src/**/*.js' -c 'npm run build && cp -rvf *.js src dist $npm_package_config_dest/node_modules/reactive-di'"
},
"author": "Stefan Zerkalica <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/zerkalica/reactive-di.git"
},
"keywords": [
"reactive-di",
"dependency injection",
"di",
"modular",
"state",
"functional",
"immutable",
"hot",
"live",
"replay",
"flux",
"elm"
],
"files": [
"*.map",
"*.js",
"*.flow",
".flowconfig",
"README.md",
"LICENSE",
"src",
"flow-typed",
"dist"
],
"devDependencies": {
"@babel/core": "=7.0.0-beta.40",
"@babel/plugin-check-constants": "^7.0.0-beta.38",
"@babel/plugin-external-helpers": "=7.0.0-beta.40",
"@babel/plugin-proposal-class-properties": "=7.0.0-beta.40",
"@babel/plugin-proposal-decorators": "=7.0.0-beta.40",
"@babel/plugin-proposal-object-rest-spread": "=7.0.0-beta.40",
"@babel/plugin-transform-flow-strip-types": "^7.0.0-beta.40",
"@babel/preset-es2015": "^7.0.0-beta.40",
"@babel/register": "^7.0.0-beta.40",
"chokidar-cli": "^1.2.0",
"flow-bin": "^0.66.0",
"lom_atom": "^4.0.3",
"mobx": "^3.5.1",
"mocha": "^5.0.1",
"preact": "^8.2.7",
"preact-render-to-string": "^3.7.0",
"rimraf": "^2.6.2",
"rollup": "^0.56.3",
"rollup-plugin-babel": "^4.0.0-beta.2",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-uglify": "^3.0.0",
"standard-version": "^4.3.0",
"uglify-es": "^3.3.9"
},
"dependencies": {
"urc": "^1.0.8"
}
}