-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.21 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
{
"name": "interpreting",
"version": "0.0.1",
"description": "Require any file extension of interpret dictionary.",
"author": "Ricardo Ferro <ricardo.ferro@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/rferro/interpreting.git"
},
"bugs": {
"url": "http://github.com/rferro/interpreting/issues"
},
"main": "lib",
"engines": {
"node": ">=4"
},
"keywords": [
"interpret",
"require",
"babel",
"coffee",
"json",
"json5",
"markdown",
"md",
"es6",
"jsx",
"yml",
"yaml",
"typescript",
"ts",
"xml"
],
"scripts": {
"build": "babel src -d lib",
"test": "jest",
"test:watch": "jest --watchAll",
"standard": "standard | snazzy",
"standard:fix": "standard --fix | snazzy"
},
"dependencies": {
"interpret": "^1.0.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.24.1",
"jest": "^20.0.4",
"snazzy": "^7.0.0",
"standard": "^10.0.2"
},
"standard": {
"ignore": [
"lib",
"test"
]
},
"jest": {
"notify": true,
"verbose": true
},
"license": "MIT"
}