-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.33 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.33 KB
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
{
"name": "pyformatjs",
"version": "0.1.0",
"description": "Expands JS' string prototype by adding in a format functionality, as close as possible to Python's own format functionality",
"main": "PyFormatJS.js",
"directories": {
"test": "test"
},
"dependencies": {},
"devDependencies": {
"ava": "^0.25.0",
"eslint": "^5.8.0",
"mocha": "^5.2.0"
},
"scripts": {
"test": "echo -e \"You're supposed to run scripts independently\"; exit 1",
"eslint": "eslint .",
"mocha": "mocha test/mocha/."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sighery/PyFormatJS.git"
},
"keywords": [
"format",
"python"
],
"author": "Sighery",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sighery/PyFormatJS/issues"
},
"homepage": "https://github.com/Sighery/PyFormatJS#readme",
"eslintConfig": {
"env": {
"shared-node-browser": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2016
},
"rules": {
"indent": [
"error",
"tab",
{ "outerIIFEBody": 0 }
],
"max-len": [
"error",
{ "code": 100 }
],
"linebreak-style": [
"error",
"unix"
],
"semi": [
"error",
"always"
]
}
}
}