-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.27 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
{
"name": "muve",
"version": "1.0.2",
"main": "dist/muve.cjs.js",
"jsnext:main": "dist/muve.js",
"module": "dist/muve.js",
"umd:main": "dist/muve.umd.js",
"license": "MIT",
"author": "Frank A. Wilkerson",
"repository": "https://github.com/fwilkerson/muve.git",
"devDependencies": {
"@std/esm": "^0.10.1",
"jsdom": "^11.2.0",
"jsdom-global": "^3.0.2",
"jshint": "^2.9.5",
"nyc": "^11.2.1",
"prettier": "^1.7.0",
"rollup": "^0.50.0",
"rollup-plugin-commonjs": "^8.2.1",
"sinon": "^3.2.1",
"size-limit": "^0.11.4",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
},
"scripts": {
"build": "rollup -c",
"jshint": "jshint ./src",
"prettier": "prettier -l \"src/**/*.js\"",
"size": "size-limit",
"tap": "tape -r @std/esm \"tests/**/*.test.js\" | tap-spec",
"test": "nyc npm run tap"
},
"jshintConfig": {
"browser": true,
"esversion": 6,
"maxcomplexity": 11,
"undef": true,
"unused": true
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"tabWidth": 4,
"useTabs": true
},
"@std/esm": {
"esm": "all",
"cjs": true
},
"nyc": {
"reporter": ["lcov", "text"],
"require": ["@std/esm"]
},
"size-limit": [
{
"path": "./dist/muve.js",
"limit": "1 KB"
}
]
}