-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.36 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": "juice.js",
"version": "2.0.2",
"main": "./dist/index.js",
"author": "Simon Lagos <simon.lagos.sallhed@gmail.com>",
"license": "MIT",
"scripts": {
"clean": "rm -f juice.js.tgz",
"build": "rm -rf dist && tsc",
"version": "npm run build",
"go": "npm run build && npm run pack --filename juice.js.tgz && cd testApp && npm run refresh && npm run start",
"release": "npm run build && np",
"test": "ava"
},
"prettier": {
"trailingComma": "all",
"semi": false,
"singleQuote": true,
"useTabs": false,
"bracketSpacing": true
},
"xo": {
"prettier": true,
"env": [
"es2020",
"node"
],
"ignores": [
"showcase2"
],
"parser": "@typescript-eslint/parser",
"rules": {
"unicorn/filename-case": "off",
"capitalized-comments": "off",
"dot-notation": "off"
}
},
"ava": {
"require": [
"./script/setupTests.js"
],
"extensions": [
"js",
"ts"
]
},
"devDependencies": {
"@babel/cli": "7.14.8",
"@babel/core": "7.15.0",
"@babel/preset-env": "7.15.0",
"@babel/preset-typescript": "7.15.0",
"@babel/register": "7.15.3",
"@types/lodash": "4.14.172",
"ava": "3.15.0",
"eslint-config-xo-typescript": "0.44.0",
"lodash": "4.17.21",
"np": "7.5.0",
"typescript": "4.4.2",
"xo": "0.44.0"
}
}