-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 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
51
52
53
54
{
"name": "ru-typo",
"version": "6.0.0",
"description": "Russian typography script",
"homepage": "https://github.com/Nufeen/typo#readme",
"bugs": {
"url": "https://github.com/Nufeen/typo/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nufeen/typo.git"
},
"license": "WTFPL",
"author": "Nufeen",
"type": "module",
"main": "build/typo.js",
"module": "build/typo.js",
"types": "build/typo.d.ts",
"exports": {
".": {
"import": "./build/typo.js",
"type": "./build/typo.d.ts"
}
},
"directories": {
"lib": "./src",
"test": "./test"
},
"scripts": {
"build": "rollup -c",
"test": "mocha",
"tests": "npm test -- --watch"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@babel/register": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/mocha": "^9.0.0",
"eslint": "^8.2.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"rollup": "^2.59.0",
"should": "^13.2.3",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
}
}