This repository has been archived by the owner on Feb 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.32 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
64
65
66
67
68
69
70
71
{
"name": "ency",
"version": "0.0.21",
"description": "Concurrency management for Javascript.",
"author": "Alid Castano",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alidcastano/ency.git"
},
"private": false,
"main": "dist/build.js",
"scripts": {
"codecov": "codecov",
"unit": "cross-env NODE_ENV=development karma start test/unit/karma.conf.js",
"test": "npm run unit -- --single-run",
"webpack:bundle": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"rollup:bundle": "cross-env NODE_ENV=production rollup -c rollup.config.js",
"build": "rm -rf dist/ && npm run rollup:bundle",
"upgrade": "npm --no-git-tag-version version patch && npm run build && npm publish"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.23.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chromedriver": "^2.29.0",
"codecov": "^2.1.0",
"cross-env": "^4.0.0",
"cross-spawn": "^5.1.0",
"eslint": "^3.19.0",
"eslint-config-vue": "^2.0.2",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^1.7.1",
"eslint-plugin-vue": "^2.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"isparta-loader": "^2.0.0",
"karma": "^1.3.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon-chai": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^2.0.2",
"mocha": "^3.2.0",
"nightwatch": "^0.9.12",
"nightwatch-helpers": "^1.2.0",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-filesize": "^1.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1",
"rxjs": "^5.3.0",
"selenium-server": "^3.0.1",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.1.0-beta.9",
"webpack-merge": "^1.1.2"
}
}