-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 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
55
56
{
"name": "yandex-market-language",
"version": "0.4.1",
"description": "Your own Yandex Market Language (YML) generator, with blackjack and validation",
"homepage": "https://github.com/LotusTM/yandex-market-language",
"author": "Serj Lavrin (https://github.com/ArmorDarks)",
"repository": {
"type": "git",
"url": "https://github.com/LotusTM/yandex-market-language.git"
},
"bugs": {
"url": "https://github.com/LotusTM/yandex-market-language/issues"
},
"license": "Apache-2.0",
"keywords": [
"yandex",
"яндекс",
"market",
"маркет",
"language",
"yandex market",
"яндекс маркет",
"yandex market language",
"json",
"generator",
"validator"
],
"main": "./lib/yml",
"dependencies": {
"moment": "2.18.1",
"tcomb": "3.2.23",
"xmlbuilder": "9.0.4"
},
"devDependencies": {
"jest": "20.0.4",
"snazzy": "6.0.0",
"standard": "10.0.3"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "standard | snazzy",
"test:watch": "jest --watch",
"test": "npm run lint && jest",
"prepublishOnly": "npm test"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/.git/",
"/node_modules/"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js)?$"
}
}