-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"author": {
"name": "Silas B. Domingos",
"email": "hello@balmante.eti.br",
"url": "https://balmante.eti.br"
},
"name": "@singleware/i18n",
"description": "Singleware i18n package.",
"license": "MIT",
"version": "1.0.3",
"main": "release/source/index.js",
"types": "release/types/index.d.ts",
"keywords": [
"i18n",
"internationalization",
"singleware"
],
"repository": {
"type": "git",
"url": "https://github.com/singleware/i18n"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@singleware/class": "^1.1.19",
"@singleware/jsx": "^1.0.29"
},
"devDependencies": {
"@singleware/testing": "^1.0.0",
"@types/node": "^11.11.5",
"prettier": "^1.16.4",
"typescript": "^3.7.5"
},
"prettier": {
"printWidth": 125,
"tabWidth": 2,
"singleQuote": true,
"semi": true
},
"scripts": {
"prepublishOnly": "npm test",
"test": "node ./release/tests/suite.js",
"start": "node ./release/examples/basic.js",
"clean": "rm -rf ./release",
"make": "npm run make-source && npm run make-examples && npm run make-tests",
"update": "npm run update-source",
"build": "npm run clean && npm run make && npm run update",
"make-source": "npx tsc -p ./source",
"make-examples": "npx tsc -p ./examples",
"make-tests": "npx tsc -p ./tests",
"update-source": "cp -Rf ./source/types/*.d.ts ./release/types/types"
}
}