-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
85 lines (85 loc) · 2.45 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "substance-texture",
"version": "3.0.0-preview-5",
"author": {
"name": "Substance",
"email": "info@substance.io"
},
"description": "A word processor for structured content.",
"main": "./dist/texture.cjs.js",
"browser": "./dist/texture.js",
"jsnext:main": "index.js",
"dependencies": {
"debug": "4.1.1",
"fs-extra": "7.0.1",
"katex": "0.10.0",
"substance": "1.0.2",
"yauzl": "2.10.0",
"yazl": "2.5.1"
},
"peerDependency": {
"substance": "^1.0.2"
},
"devDependencies": {
"colors": "1.3.3",
"diff": "4.0.1",
"electron": "4.0.3",
"electron-builder": "20.39.0",
"esm": "3.2.22",
"express": "4.16.4",
"font-awesome": "4.5.0",
"inter-ui": "3.3.2",
"istanbul-lib-instrument": "3.3.0",
"module-alias": "2.2.0",
"nyc": "14.1.1",
"parse-formdata": "1.0.2",
"rollup": "1.11.3",
"rollup-plugin-commonjs": "9.3.4",
"rollup-plugin-node-resolve": "4.2.3",
"source-map-support": "0.5.10",
"standard": "12.0.1",
"substance-bundler": "0.26.4",
"substance-test": "0.14.0",
"tap-spec": "5.0.0",
"texture-plugin-jats": "0.2.0",
"texture-xml-utils": "0.2.0"
},
"scripts": {
"prepack": "npm install && node make publish",
"lint": "standard \"builds/**/*.js\" \"src/**/*.js\" \"test/**/*.js\"",
"start": "node --require esm make dev -s -w -d data",
"app": "node make run-app -w",
"release": "node make desktop && build --project app-dist",
"pretest": "npm run lint",
"test": "npm run test-nodejs",
"test-debug": "node make test-nodejs && node --inspect-brk test/runTests",
"test-nodejs": "node make test-nodejs && node test/runTests | tap-spec",
"test-browser": "node make test-browser -s -w",
"test-electron": "node make run:test:electron -w",
"cover": "npm run cover:nodejs && npm run cover:electron && npm run cover:report",
"cover:nodejs": "node make build:coverage:nodejs && node test/runTests --coverage | tap-spec nyc",
"cover:electron": "node make build:coverage:browser && electron builds/test --coverage | tap-spec",
"cover:report": "nyc report --reporter=lcov --reporter=html"
},
"nyc": {
"include": [
"src/**/*.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/substance/texture.git"
},
"license": "MIT",
"files": [
"src",
"dist",
"index.js",
"*.md",
"package.json",
"*.css"
],
"publishConfig": {
"tag": "next"
}
}