-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "kaleidoscope",
"version": "1.5.3",
"description": "",
"main": "index.js",
"s3_bucket": "kaleidoscope-sim",
"scripts": {
"dev": "parcel src/index.html",
"build": "parcel build -d build/$npm_package_version --public-url ./$npm_package_version src/index.html && mv build/$npm_package_version/index.html build/",
"build:full": "parcel build -d build/$npm_package_version --public-url ./$npm_package_version src/index.html --no-minify && mv build/$npm_package_version/index.html build/",
"publish": "aws --profile global s3 sync build s3://$npm_package_s3_bucket/ --acl public-read",
"clean": "rm -rf dist build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/januszry/kaleidoscope.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/januszry/kaleidoscope/issues"
},
"homepage": "https://github.com/januszry/kaleidoscope#readme",
"devDependencies": {
"@babel/preset-env": "^7.5.4",
"node-sass": "^4.12.0"
},
"dependencies": {
"matter-js": "0.14.2",
"nipplejs": "0.6.8",
"tippy.js": "2.5.3"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"browser": true
},
"rules": {
"quotes": [
2,
"single"
]
}
}
}