@acemir/cssom 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@acemir/cssom",
3
+ "description": "CSS Object Model implementation and CSS parser",
4
+ "keywords": [
5
+ "CSS",
6
+ "CSSOM",
7
+ "parser",
8
+ "styleSheet"
9
+ ],
10
+ "version": "0.9.0",
11
+ "author": "Nikita Vasilyev <me@elv1s.ru>",
12
+ "contributors": [
13
+ "Acemir Sousa Mendes <acemirsm@gmail.com>"
14
+ ],
15
+ "repository": "acemir/CSSOM",
16
+ "files": [
17
+ "lib/",
18
+ "build/"
19
+ ],
20
+ "main": "./lib/index.js",
21
+ "license": "MIT",
22
+ "scripts": {
23
+ "build": "node build.js",
24
+ "release": "npm run build && changeset publish"
25
+ },
26
+ "devDependencies": {
27
+ "@changesets/changelog-github": "^0.5.1",
28
+ "@changesets/cli": "^2.27.1"
29
+ }
30
+ }