-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
63 lines (63 loc) · 1.56 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
{
"name": "async-csp",
"version": "0.5.0",
"description": "CSP style channels using ES7 async/await",
"keywords": [
"CSP",
"async",
"await",
"channel",
"communicating",
"pipe",
"pipeline",
"processes",
"sequential"
],
"main": "dist/cjs/channel.js",
"scripts": {
"build": "gulp build",
"lint": "eslint src/**/*.js test/**/*.js *.js",
"test": "mocha \"./{,!(node_modules)/**/}*.spec.js\"",
"test:watch": "npm run test -- --watch",
"watch": "gulp watch"
},
"repository": {
"type": "git",
"url": "https://github.com/dvlsg/async-csp.git"
},
"author": "Dave Lesage",
"license": "MIT",
"bugs": {
"url": "https://github.com/dvlsg/async-csp/issues"
},
"homepage": "https://github.com/dvlsg/async-csp",
"devDependencies": {
"babel-core": "6.7.5",
"babel-eslint": "^4.1.8",
"babel-loader": "6.2.4",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^4.1.2",
"del": "^1.2.0",
"eslint": "^4.10.0",
"eslint-config-prettier": "^2.7.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.2",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.3",
"in-publish": "2.0.0",
"mocha": "^4.0.1",
"prettier": "^1.7.4",
"prettier-eslint-cli": "^4.4.0",
"run-sequence": "^1.1.5",
"webpack-stream": "^3.1.0",
"zana-assert": "^0.1.4"
},
"dependencies": {
"babel-runtime": "^6.6.1"
}
}