forked from cyclejs/cyclejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.35 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
{
"name": "@cycle/core",
"version": "6.0.0",
"author": "Andre Staltz",
"description": "A fully reactive JavaScript framework for Human-Computer Interaction",
"license": "MIT",
"homepage": "https://cyclejs.github.io",
"bugs": "https://github.com/cyclejs/cycle-core/issues",
"repository": {
"type": "git",
"url": "https://github.com/cyclejs/cycle-core"
},
"keywords": [
"reactive",
"framework",
"rxjs",
"rx",
"unidirectional",
"mvi",
"virtual-dom"
],
"main": "lib/cycle.js",
"peerDependencies": {
"rx": "*"
},
"devDependencies": {
"babel": "5.8.29",
"babelify": "6.4.0",
"browserify": "12.0.1",
"browserify-shim": "3.8.11",
"eslint": "1.0.0",
"eslint-config-cycle": "3.0.0",
"eslint-plugin-cycle": "1.0.1",
"eslint-plugin-no-class": "0.1.0",
"markdox": "0.1.10",
"mocha": "2.3.3",
"rx": "4.0.6",
"sinon": "1.17.2",
"testem": "0.9.11",
"uglify-js": "2.5.0"
},
"engines": {
"node": ">=0.10.0"
},
"browserify-shim": {
"rx": "global:Rx"
},
"scripts": {
"eslint": "eslint src/",
"mocha": "mocha --compilers js:babel/register test",
"test": "npm run eslint && npm run mocha",
"test-browser": "testem",
"pretest-browser": "browserify test/cycle.js -t babelify -o test/browser/tests-bundle.js",
"posttest-browser": "rm test/browser/tests-bundle.js",
"browserify": "browserify src/cycle.js -t babelify -t browserify-shim --standalone Cycle --exclude rx --outfile dist/cycle.js",
"uglify": "uglifyjs dist/cycle.js -o dist/cycle.min.js",
"dist": "npm run browserify && npm run uglify",
"docs": "node ./scripts/make-api-docs.js",
"precompile-lib": "rm -rf lib/ && mkdir -p lib",
"compile-lib": "babel -d lib/ src/",
"prepublish": "npm run compile-lib",
"release": "npm run release-patch",
"release-patch": "git checkout master && npm run dist; git commit -a -m 'Build dist/'; npm version patch && git push origin master --tags && npm publish --access=public",
"release-minor": "git checkout master && npm run dist; git commit -a -m 'Build dist/'; npm version minor && git push origin master --tags && npm publish --access=public",
"release-major": "git checkout master && npm run dist; git commit -a -m 'Build dist/'; npm version major && git push origin master --tags && npm publish --access=public"
}
}