forked from rle-mino/pathr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.23 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
{
"name": "pathr",
"main": "./lib/main.js",
"version": "1.0.1",
"author": "rle-mino",
"description": "Path completion and manipulation",
"keywords": [
"atom",
"path",
"autocomplete",
"autocompletion",
"file",
"import",
"require"
],
"scripts": {
"build:prod": "tsc",
"build:watch": "tsc --watch --pretty",
"test:prod": "jest",
"test:watch": "jest --watch --verbose",
"lint": "eslint ./spec/*"
},
"repository": "https://github.com/rle-mino/pathr",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"fuzzy": "^0.1.3"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provide"
}
}
},
"devDependencies": {
"@types/node": "^7.0.13",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"expect": "^1.20.2",
"jest": "^19.0.2",
"tslint-config-airbnb": "^1.1.1",
"typescript": "^2.2.2"
},
"jest": {
"testEnvironment": "node",
"transform": {
".*": "./node_modules/babel-jest"
}
},
"babel": {
"presets": [
"es2015"
]
}
}