forked from tridactyl/tridactyl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.01 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "tridactyl",
"version": "0.1.0",
"description": "Vimperator/Pentadactyl successor",
"dependencies": {
"@types/css": "0.0.31",
"@types/nearley": "^2.11.0",
"css": "^2.2.1",
"fuse.js": "^3.2.0",
"mark.js": "^8.11.1",
"nearley": "^2.11.0",
"semver-compare": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^21.1.4",
"@types/node": "^8.0.46",
"awesome-typescript-loader": "^3.2.3",
"chokidar-cli": "^1.2.0",
"cleanslate": "^0.10.1",
"copy-webpack-plugin": "^4.2.0",
"jest": "^21.2.1",
"prettier": "^1.11.1",
"shared-git-hooks": "^1.2.1",
"source-map-loader": "^0.2.2",
"ts-jest": "^21.1.3",
"ts-node": "^3.3.0",
"typedoc": "^0.9.0",
"typescript": "^2.5.3",
"uglify-es": "^3.1.5",
"uglifyjs-webpack-plugin": "^1.0.0-rc.0",
"web-ext": "^1.10.1",
"web-ext-types": "github:kelseasy/web-ext-types",
"webpack": "^3.8.1"
},
"scripts": {
"build": "sh scripts/build.sh",
"run": "web-ext run --firefox=firefox -s build/ -u 'txti.es'",
"watch": "echo 'watch is broken, use build instead'; exit 0; chokidar src scripts --initial --silent -i 'src/excmds_{background,content}.ts' -i 'src/static/docs' -c 'npm run build'",
"clean": "rm -rf build generated",
"test": "npm run build && jest --silent",
"update-buildsystem": "rm -rf src/node_modules; npm run clean"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"author": "Colin Caine",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cmcaine/tridactyl.git"
},
"keywords": [
"webextension",
"webext",
"vim",
"firefox"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cmcaine/tridactyl/issues"
},
"homepage": "https://github.com/cmcaine/tridactyl#readme"
}