-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "cyclejs-ace-editor",
"version": "0.0.7",
"description": "Cycle.js wrapper for the Ace Editor",
"main": "lib/index.js",
"scripts": {
"test": "karma start ./spec/karma.conf.js --single-run",
"build": "babel src --out-dir lib",
"build:example": "browserify example/src/index.js -t babelify --outfile example/bundle.js",
"deploy": "gulp deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tommy-the-runner/cyclejs-ace-editor.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/tommy-the-runner/cyclejs-ace-editor/issues"
},
"homepage": "https://github.com/tommy-the-runner/cyclejs-ace-editor#readme",
"dependencies": {
"brace": "^0.8.0",
"@cycle/core": "^6.0.3",
"@cycle/isolate": "^1.4.0",
"rx": "^4.1.0"
},
"devDependencies": {
"@cycle/dom": "^9.4.0",
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-gh-pages": "^0.5.4",
"karma": "^1.1.0",
"karma-browserify": "^5.0.5",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.4",
"karma-phantomjs-launcher": "^1.0.1",
"mocha": "^2.5.3",
"phantomjs-prebuilt": "^2.1.7",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
}
}