-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "@nobuti/lingoda",
"version": "1.0.2",
"description": "i18n minimal library",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.es.js",
"unpkg": "dist/foo.umd.js",
"scripts": {
"test": "jest --watch",
"ci": "jest",
"build": "microbundle src/index.ts",
"start": "microbundle src/index.ts -w",
"prerelease": "npm run build",
"release": "npm publish --access public"
},
"keywords": [
"i18n",
"js",
"minimal"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nobuti/lingoda.git"
},
"bugs": {
"url": "https://github.com/nobuti/lingoda/issues"
},
"homepage": "https://github.com/nobuti/lingoda#readme",
"author": "nobuti",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"babel-jest": "^26.0.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.0.1",
"microbundle": "^0.12.0",
"typescript": "^3.8.3"
}
}