-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 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
{
"name": "moco",
"version": "0.0.2-alpha",
"description": "Beautiful color transitioner based on color psychology to impact your users sub-concious choices. Programmed to understand emotions and/or stratergies and nothing else :)",
"main": "dist/index.js",
"source": "src/index.ts",
"umd:main": "dist/index.umd.js",
"module": "dist/index.mjs",
"types": "dist/src/index.d.ts",
"mangle": {
"regex": "^_"
},
"scripts": {
"expo": "parcel expo/index.html --out-dir dist/expo --open --https",
"test": "jest --coverage --verbose ./tests && cat ./coverage/lcov.info | codacy-coverage --language typescript",
"build": "microbundle",
"build:expo": "parcel build expo/index.html --out-dir dist/expo --public-url ./",
"deploy": "rm -rf ./dist/expo && yarn build:expo && node ./scripts/deploy.js",
"dev": "microbundle watch"
},
"repository": "https://github.com/titans-inc/Moco.git",
"author": "Devi Prasad <deviprsd21@yahoo.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"codacy-coverage": "^3.4.0",
"gh-pages": "^2.0.1",
"jest": "^24.8.0",
"microbundle": "^0.11.0",
"parcel-bundler": "^1.12.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"typescript-tslint-plugin": "^0.4.0"
},
"dependencies": {
"typed-rest-client": "^1.4.0"
}
}