-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
32 lines (32 loc) · 969 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
32
{
"name": "Sloth",
"version": "0.2.1",
"description": "Brings connection like your users have to you ;)",
"scripts": {
"build": "rollup --config",
"test": "npm run build && mocha ./test/test.js",
"run-regular-site-demo": "cd demo/regular-site && python -m SimpleHTTPServer 8000",
"run-throttled-site-demo": "cd demo/throttled-site && python -m SimpleHTTPServer 8001"
},
"author": "denar90",
"license": "MIT",
"devDependencies": {
"cssnano": "^4.1.10",
"mocha": "^5.2.0",
"node-sass": "^4.12.0",
"postcss-cssnext": "^3.1.0",
"postcss-nested": "^4.1.2",
"postcss-simple-vars": "^5.0.2",
"puppeteer": "^1.12.2",
"rollup": "^1.6.0",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-postcss": "^2.0.3"
},
"dependencies": {
"choices": "^0.1.3",
"choices.js": "^6.0.3",
"document-promises": "^4.0.0"
}
}