-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.53 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.53 KB
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": "cycle-svg-pan-and-zoom",
"version": "0.1.2",
"main": "lib/svg-pan-and-zoom.js",
"files": [
"lib"
],
"author": "Nick Johnstone",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cyclejs-community/cycle-svg-pan-and-zoom.git"
},
"bugs": {
"url": "https://github.com/cyclejs-community/cycle-svg-pan-and-zoom/issues"
},
"homepage": "https://github.com/cyclejs-community/cycle-svg-pan-and-zoom#readme",
"devDependencies": {
"@cycle/xstream-run": "^3.1.0",
"babel-cli": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.16.3",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"budo": "^9.2.1",
"chalk": "^1.1.3",
"cross-spawn": "^4.0.2",
"dotenv": "^2.0.0",
"envify": "^3.4.1",
"eslint": "^3.8.1",
"eslint-config-semistandard": "^7.0.0",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-react": "^6.4.1",
"eslint-plugin-standard": "^2.0.1",
"exorcist": "^0.4.0",
"fs-extra": "^0.30.0",
"mkdirp": "^0.5.1",
"mocha": "^3.1.1",
"uglifyify": "^3.0.3"
},
"dependencies": {
"@cycle/dom": "^13.0.0",
"@cycle/isolate": "^1.4.0",
"xstream": "^7.0.0"
},
"scripts": {
"start": "node .scripts/start.js",
"test": "node .scripts/test.js",
"precompile-lib": "rm -rf lib/ && mkdir -p lib",
"compile-lib": "babel src -d lib",
"prepublish": "npm run compile-lib"
}
}