-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 801 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 801 Bytes
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
{
"name": "vanillin-extract",
"version": "0.8.0",
"description": "DOM subset written in TypeScript",
"main": "lib/index",
"scripts": {
"test": "tsc; mocha --recursive './lib/*.test.js'",
"dist:compile": "tsc --declaration --outDir build",
"dist:copy": "cp package.json README.md .npmignore build/;",
"dist:dry": "npm run dist:compile; npm run dist:copy; cd build/; npm publish --dry-run",
"dist": "npm run dist:compile; npm run dist:copy; cd build/; npm publish"
},
"author": "Bartosz Krupa",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^12.11.7",
"chai": "^4.2.0",
"chai-subset-in-order": "^2.1.4",
"metaes": "^3.0.0",
"mocha": "^6.2.1",
"typescript": "^4.2.4"
}
}