-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.85 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.85 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
64
65
66
67
68
69
70
71
{
"name": "rollup-plugin-metascript",
"version": "0.0.5",
"description": "A Rollup plugin to transform code with MetaScript.",
"main": "target/rollup-plugin-metascript.cjs.js",
"module": "target/rollup-plugin-metascript.es.js",
"jsnext:main": "target/rollup-plugin-metascript.es.js",
"scripts": {
"prepare": "rollup -c",
"test": "ava",
"coverage": "nyc --reporter=lcov --reporter=text ava",
"checkstyle": "eslint \"src/**/*.js\" \"test/**/*.js\" --ignore-pattern \"test/resources/\""
},
"keywords": [
"rollup-plugin",
"metascript"
],
"author": "125m125",
"license": "MIT",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/125m125/splconfigurator.git"
},
"bugs": {
"url": "https://github.com/125m125/splconfigurator/issues"
},
"homepage": "https://github.com/125m125/splconfigurator#readme",
"dependencies": {
"metascript": "1.0.0",
"rollup-pluginutils": "2.8.2"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/register": "7.12.10",
"ava": "2.4.0",
"babel-plugin-istanbul": "5.2.0",
"eslint": "6.8.0",
"nyc": "14.1.1",
"rollup": "1.32.0"
},
"ava": {
"files": [
"test/**/*Test.js"
],
"require": "./test/_register.js"
},
"nyc": {
"all": true,
"include": [
"src/**/*.js"
],
"require": [
"@babel/register"
],
"exclude": "src/index.js",
"sourceMap": false,
"instrument": false
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"istanbul"
]
}
}