forked from WebPlatformForEmbedded/localCookie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 954 Bytes
/
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
{
"author": "Wouter van Boesschoten <[email protected]>",
"name": "localCookie",
"version": "1.1.0",
"license": "apache",
"main": "src/localCookie.js",
"module": "module/localCookie.js",
"browser": "dist/localCookie.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"watch": "rollup -c rollup.config.js --watch",
"serve": "http-server . -o -c-1",
"test": "concurrently 'npm run watch' 'npm run serve'"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"chai": "^4.2.0",
"concurrently": "^4.1.1",
"http-server": "^0.11.1",
"mocha": "^6.2.2",
"rollup": "^1.25.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-uglify-es": "^0.0.1",
"uglifyjs-webpack-plugin": "^1.0.0-rc.0"
}
}