-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.81 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
{
"name": "@cycle/notification",
"version": "2.0.0",
"description": "Cycle.js driver for HTML5 Notifications",
"main": "lib/index.js",
"author": "Brandon Smith <[email protected]> (http://16cards.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cyclejs/cycle-notification-driver.git"
},
"bugs": {
"url": "https://github.com/cyclejs/cycle-notification-driver/issues"
},
"homepage": "https://github.com/cyclejs/cycle-notification-driver#readme",
"keywords": [
"cyclejs",
"driver",
"notification"
],
"dependencies": {
"rx": "^4.0.6"
},
"devDependencies": {
"@cycle/core": "^6.0.3",
"babel-cli": "^6.1.2",
"babel-eslint": "^4.1.4",
"babel-preset-es2015": "^6.1.4",
"babel-preset-stage-0": "^6.1.2",
"babel-register": "^6.7.2",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"browserify-shim": "^3.8.12",
"eslint": "^1.9.0",
"eslint-config-cycle": "^3.2.0",
"eslint-plugin-cycle": "^1.0.2",
"markdox": "^0.1.10",
"mocha": "^2.4.5",
"npm-run-all": "^1.7.0",
"uglify-js": "^2.6.2"
},
"browserify-shim": {
"rx": "global:Rx"
},
"scripts": {
"test": "mocha --compilers js:babel-register test",
"browserify": "browserify src/index.js -t babelify -t browserify-shim --standalone CycleNotificationDriver --exclude rx --outfile dist/cycle-notification-driver.js",
"preuglify": "rm -rf dist/ && mkdir -p dist",
"uglify": "uglifyjs dist/cycle-notification-driver.js -o dist/cycle-notification-driver.min.js",
"dist": "npm-run-all browserify uglify",
"docs": "node ./scripts/make-api-docs.js",
"lint": "eslint src/*.js test/*.js",
"pretranspile": "rm -rf lib/ && mkdir -p lib",
"transpile": "babel -d lib/ src/",
"prepublish": "npm run transpile"
}
}