-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·52 lines (52 loc) · 1.51 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
{
"name": "trv-oauth-js-sdk",
"description": "Trivago oAuth JavaScript SDK",
"version": "1.0.0",
"main": "dist/trv.sdk.js",
"scripts": {
"test": "BABEL_ENV=mocha mocha --compilers js:babel-register || true",
"build-uc": "BABEL_ENV=release rollup -c",
"build": "BABEL_ENV=release rollup -c --environment MINIFY",
"commit": "git-cz",
"release": "./bin/release.sh",
"flow": "flow; test $? -eq 0 -o $? -eq 2"
},
"author": {
"name": "Roman Alekseev",
"email": "[email protected]"
},
"license": "ISC",
"devDependencies": {
"babel": "^6.5.2",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-es2015-classes": "^6.9.0",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-minimal-rollup": "^2.0.0",
"babel-preset-node6": "^11.0.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"commitizen": "^2.8.2",
"conventional-changelog": "^1.1.0",
"conventional-changelog-cli": "^1.2.0",
"conventional-recommended-bump": "^0.3.0",
"cz-conventional-changelog": "^1.1.6",
"flow-bin": "^0.33.0",
"json": "^9.0.3",
"mocha": "^3.1.2",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-uglify": "^0.3.1",
"uglify": "^0.1.5",
"warning": "^2.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"registry": "sdfg"
}
}