forked from AFASSoftware/maquette
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.88 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.88 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "maquette",
"description": "Minimalistic Virtual DOM implementation with support for animated transitions.",
"homepage": "https://maquettejs.org/",
"keywords": [
"virtual",
"dom",
"animation",
"transitions"
],
"version": "3.3.2",
"author": "Johan Gorter <johan@johangorter.com>",
"repository": {
"type": "git",
"url": "https://github.com/AFASSoftware/maquette"
},
"module": "./dist/index.js",
"main": "./dist/maquette.cjs.js",
"browser": "./dist/maquette.umd.js",
"typings": "./dist/index.d.ts",
"scripts": {
"prepublishOnly": "tsa clean && npm run dist",
"assist": "tsa assist",
"release": "tsa release",
"fix": "tsa fix",
"clean": "tsa clean",
"dist": "tsc -p ./src/tsconfig.json && tsc -p ./examples/tsconfig.json && rollup -c && uglifyjs ./dist/maquette.umd.js -c unsafe=true,unsafe_comps=true,unsafe_math=true,passes=3 -m -o ./dist/maquette.umd.min.js",
"test": "tsa ci",
"ci": "tsa ci && npm -s run dist && ts-node ./tools/check-file-size",
"publish-website": "cd website && npm install --no-optional && node generate && npm run typedoc && firebase deploy",
"test-also-with-browser": "npm run dist && cd examples/todomvc && npm install --no-save bower && bower install && cd ../../browser-tests && npm install && npm test",
"precommit": "tsa pre-commit",
"prepush": "npm run dist && tsa pre-push",
"postcheckout": "tsa post-checkout || exit 0",
"postmerge": "tsa post-merge || exit 0"
},
"license": "MIT",
"tonicExampleFilename": "examples/tonic-example.js",
"nyc": {
"include": [
"src/**/*.ts",
"typings/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"html",
"text-summary"
],
"cache": true,
"temp-directory": "./build/nyc/cache",
"all": true,
"check-coverage": true,
"report-dir": "./build/coverage",
"es-module": false,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"watermarks": {
"lines": [
75,
100
],
"functions": [
75,
100
],
"branches": [
75,
100
],
"statements": [
75,
100
]
}
},
"devDependencies": {
"@types/chai-as-promised": "7.1.0",
"@types/sinon": "5.0.1",
"@types/sinon-chai": "3.2.0",
"Set": "0.4.1",
"browser-sync": "2.24.6",
"chai-as-promised": "7.1.1",
"cross-env": "5.2.0",
"debug": "3.1.0",
"del": "3.0.0",
"ink-docstrap": "1.3.2",
"inquirer": "6.1.0",
"istanbul": "0.4.5",
"jsdoc": "3.5.5",
"jsdom": "12.0.0",
"jsdom-global": "3.0.2",
"mocha": "5.2.0",
"nyc": "12.0.2",
"precss": "3.1.2",
"remap-istanbul": "0.11.1",
"rollup": "0.64.1",
"sinon": "6.1.5",
"sinon-chai": "3.2.0",
"typescript-assistant": "0.32.7",
"uglify-js": "3.4.7"
}
}