-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
59 lines (59 loc) · 1.94 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@smartface/native",
"version": "5.1.4",
"description": "Core Modules of Native Libraries",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"browserify": "browserify index.js -o bundle.js --standalone sf-core && uglifyjs bundle.js -o bundle.ugly.js -c -m",
"beautify": "find . -type f -name '*.js' ! -path '*node_modules*' ! -path '*git*' ! -path '*docs_resource*' ! -path '*tests*' -exec js-beautify -r {} +",
"build": "rm -rf dist && tsc && cp ./package.json ./dist && cp -r .types ./dist",
"deploy": "npm run build && cd ./dist && npm publish",
"deploy:alpha": "npm run deploy -- --tag alpha",
"deploy:beta": "npm run deploy -- --tag beta",
"deploy:prod": "npm run deploy -- --tag latest",
"dev": "npx tsc -w --project tsconfig.dev.json",
"lint": "npx prettier --check ./**/*",
"lint:write": "npx prettier --write ./**/*",
"build:document": "node typedoc.js"
},
"repository": {
"type": "git",
"url": "https://github.com/smartface/smartface-native.git"
},
"keywords": [
"smartface",
"core-modules",
"javascript"
],
"author": {
"name": "Smartface",
"email": "[email protected]",
"url": "http://smartface.io"
},
"license": "ISC",
"homepage": "https://github.com/smartface/smartface-native",
"dependencies": {
"abort-controller": "^3.0.0",
"events": "^3.3.0"
},
"devDependencies": {
"@types/node": "^17.0.40",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"browserify": "14.1.0",
"chai": "^3.5.0",
"eslint": "^8.9.0",
"js-beautify": "^1.9.1",
"lodash": "^4.17.4",
"node-forge": "^0.7.0",
"prettier": "^2.5.1",
"salep": "0.2.*",
"source-map-support": "^0.5.16",
"typedoc": "^0.23.0",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typescript": "^4.6.2",
"uglify-js": "2.8.12",
"walk": "^2.3.9"
}
}