-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
{
"name": "texture-xml-utils",
"version": "0.2.1",
"description": "Toolset for working with xml schemas.",
"main": "dist/texture-xml-utils.cjs.js",
"module": "dist/texture-xml-utils.es.js",
"esnext": "index.es.js",
"browser": "dist/texture-xml-utils.js",
"scripts": {
"lint": "standard \"src/**/*.js\"",
"prepack": "npm install && node make publish",
"pretest": "npm run lint",
"test": "node --require esm test | tap-spec",
"test-debug": "node --inspect-brk --require esm test",
"cover": "nyc --require esm --reporter=lcov --reporter=text node test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/substance/texture-xml-utils.git"
},
"author": {
"name": "Substance",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/substance/texture-xml-utils/issues"
},
"homepage": "https://github.com/substance/texture-xml-utils#readme",
"devDependencies": {
"esm": "3.0.47",
"nyc": "11.8.0",
"rollup": "^1.20.3",
"standard": "12.0.1",
"substance": "^1.0.0",
"substance-bundler": "^0.27.1",
"substance-test": "0.13.2",
"tap-spec": "5.0.0",
"uglify-es": "3.3.9"
},
"peerDependencies": {
"substance": "^1.0.0"
},
"nyc": {
"include": [
"src/**/*.js"
]
},
"files": [
"src",
"dist",
"index.es.js",
"package.json",
"*.md",
"bundler"
]
}