-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.11 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
{
"name": "message-map",
"version": "0.8.0",
"description": "Dynamic string generation with a strongly-typed interface.",
"author": {
"name": "Ian K Smith",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/smithki/message-map"
},
"main": "dist/index.js",
"types": "dist/index.cjs.d.ts",
"unpkg": "dist/index.umd.js",
"files": [
"dist"
],
"scripts": {
"dev": "npm-run-all -s clean:dist compile_watch:*",
"build": "npm-run-all -s clean:dist compile:*",
"compile:cjs": "microbundle build src/index.cjs.ts --format cjs --external none",
"compile:umd": "microbundle build src/index.umd.ts --format umd --name MessageMap --external none",
"compile_watch:cjs": "microbundle watch src/index.cjs.ts --format cjs --external none",
"compile_watch:umd": "microbundle watch src/index.umd.ts --format umd --name MessageMap --external none",
"clean": "npm-run-all -s clean:*",
"clean:dist": "rimraf dist",
"clean:test-dist": "rimraf test/dist",
"clean:cache": "rimraf .rts2_cache*",
"test-watch": "npm-run-all -s test:compile -p test-watch:*",
"test-watch:compile": "tsc -w -p ./test/src",
"test-watch:run": "chokidar \"./test/dist/**/*.spec.js\" -c \"npm run test:run\" --initial \"npm run test:run\"",
"test": "npm-run-all -s clean:test-dist test:*",
"test:compile": "tsc -p ./test",
"test:run": "alsatian ./test/dist/**/*.spec.js",
"lint": "eslint --fix src/**/*.ts"
},
"devDependencies": {
"@ikscodes/eslint-config": "^6.2.0",
"@ikscodes/prettier-config": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"alsatian": "^2.3.0",
"chokidar-cli": "^1.2.1",
"eslint": "^6.7.2",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.15.1",
"eslint-plugin-react-hooks": "^1.7.0",
"microbundle": "^0.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^2.6.1",
"typescript": "^3.8.3"
}
}