forked from junkurihara/jscu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.86 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
{
"name": "jscu",
"private": true,
"license": "MIT",
"version": "0.14.21",
"root_package": "packages/js-crypto-utils",
"workspaces": [
"packages/*"
],
"scripts": {
"flow:version": "git checkout develop && bash scripts/version.sh",
"release:start": "git flow release start v$npm_package_version",
"release:finish": "git flow release finish v$npm_package_version",
"release:push": "git push --all && git push origin v$npm_package_version",
"clean": "lerna clean --yes && lerna run cleanup",
"babel": "lerna run babel",
"build": "lerna run build",
"docs": "./node_modules/.bin/esdoc -c .esdoc.json",
"test": "lerna run test",
"test:bundle": "lerna run test:bundle",
"karma": "lerna run karma",
"karma:bundle": "lerna run karma:bundle",
"karma:window": "lerna run karma:window",
"html": "lerna run html"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.4.0",
"@babel/plugin-transform-runtime": "7.4.0",
"@babel/plugin-transform-regenerator": "7.4.0",
"@babel/polyfill": "7.4.0",
"@babel/preset-env": "7.4.2",
"@babel/register": "7.4.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"babel-plugin-istanbul": "5.1.1",
"babel-plugin-transform-remove-console": "6.9.4",
"can-npm-publish": "1.3.1",
"chai": "4.2.0",
"cross-env": "5.2.0",
"esdoc": "1.1.0",
"esdoc-standard-plugin": "1.0.0",
"jsdom": "14.0.0",
"karma": "4.0.1",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "2.0.0",
"karma-coverage": "1.1.2",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"karma-webpack": "3.0.5",
"lerna": "3.13.1",
"mocha": "6.0.2",
"mocha-sinon": "2.1.0",
"nyc": "13.3.0",
"webpack": "4.29.6",
"webpack-cli": "3.3.0",
"webpack-common-shake": "2.1.0",
"webpack-merge": "4.2.1"
}
}