-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 2.1 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
{
"name": "cyclic-fire",
"version": "2.0.2",
"description": "Yet another cyclejs driver for Firebase",
"main": "dist/index.js",
"scripts": {
"docs": "rm -rf docs && mkdir docs && documentation -t documentation-theme-default -f 'html' -g -o docs/ src/*.js",
"eslint": "eslint src/",
"test-node": "babel-node ./node_modules/.bin/isparta cover _mocha test/node/index.js",
"test-browser": "testem",
"test-ci": "testem ci",
"test": "npm run eslint && npm run test-node && npm run test-browser",
"start": "npm install && npm prune && validate-commit-msg",
"dist": "browserify src/index.js -t babelify -t browserify-shim --standalone library-starter-kit --exclude most --outfile dist/library-starter-kit.js",
"postdist": "uglifyjs dist/library-starter-kit.js -o dist/library-starter-kit.min.js",
"lib": "babel -d dist/ src/",
"prepublish": "npm run lib",
"release": "npm run release-patch",
"release-patch": "git checkout master && release patch && npm publish --access=public",
"release-minor": "git checkout master && release minor && npm publish --access=public",
"release-major": "git checkout master && release major && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sdebaun/cyclic-fire.git"
},
"author": "'sdebaun' <'[email protected]'>",
"license": "ISC",
"bugs": {
"url": "https://github.com/sdebaun/cyclic-fire/issues"
},
"homepage": "https://github.com/sdebaun/cyclic-fire#readme",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^5.0.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"browserify-shim": "^3.8.12",
"cli-release": "^1.0.4",
"documentation": "^4.0.0-beta",
"eslint": "^1.10.3",
"eslint-config-cycle": "^3.2.0",
"eslint-plugin-cycle": "^1.0.2",
"eslint-plugin-no-class": "^0.1.0",
"isparta": "^4.0.0",
"testem": "^1.3.0",
"validate-commit-message": "^3.0.1"
},
"dependencies": {
"rx": "^4.0.7"
}
}