-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.23 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
{
"name": "spawn-x",
"version": "2.3.10",
"description": "Reactive management for javaScript applications",
"author": "AlexPlex",
"license": "MIT",
"main": "./lib/spawn-x.umd.js",
"typings": "./index.d.ts",
"homepage": "https://github.com/atellmer/spawn-x",
"scripts": {
"build": "npm run build:dev && npm run build:prod",
"build:dev": "webpack",
"build:prod": "set WEBPACK_ENV=build:prod&& webpack",
"dev": "set WEBPACK_ENV=dev&& webpack --watch",
"test": "tape test/index.js",
"precommit": "npm test",
"prepush": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atellmer/spawn-x.git"
},
"keywords": [
"state",
"store",
"app",
"management",
"control",
"predictable",
"live",
"observer",
"reactive",
"redux",
"flux",
"mobx",
"observable",
"rxjs",
"react",
"reactjs",
"angular",
"angularjs",
"@angular"
],
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"husky": "^0.13.1",
"tape": "^4.6.3",
"webpack": "2.2.0"
}
}