-
Notifications
You must be signed in to change notification settings - Fork 181
/
package.json
39 lines (39 loc) · 1.28 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
{
"name": "cookie_js",
"version": "1.4.2",
"description": "A tiny JavaScript library that simplifies cookies.",
"github": "https://github.com/florian/cookie.js",
"license": "MIT",
"main": "dist/cookie.cjs.js",
"module": "dist/cookie.esm.js",
"browser": "dist/cookie.umd.js",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"pretest": "npm run build",
"test": "npm run test:umd && npm run test:umd:min && npm run test:cjs && npm run test:esm",
"test:umd": "mocha --opts tests/mocha.opts tests/builds/umd.js",
"test:umd:min": "mocha --opts tests/mocha.opts tests/builds/umd.min.js",
"test:cjs": "mocha --opts tests/mocha.opts tests/builds/cjs.js",
"test:esm": "mocha --opts tests/mocha.opts -r babel-core/register tests/builds/esm.js"
},
"repository": {
"type": "git",
"url": "http://github.com/florian/cookie.js.git"
},
"bugs": {
"url": "http://github.com/florian/cookie.js/issues"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"jsdom": "15.1.1",
"jsdom-global": "3.0.2",
"mocha": "^5.0.0",
"rollup": "^1.16.6",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1"
}
}