-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.3 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
{
"name": "@emmetio/css-matcher",
"version": "1.0.2",
"description": "Small and fast CSS matcher",
"main": "./dist/css-matcher.cjs.js",
"module": "./dist/css-matcher.es.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "mocha",
"lint": "tslint ./src/*.ts",
"build": "rollup -c",
"clean": "rm -rf ./dist",
"prepare": "npm run lint && npm test && npm run clean && npm run build"
},
"keywords": [
"emmet",
"css",
"scss",
"less",
"matcher",
"match",
"selector"
],
"author": "Sergey Chikuyonok <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^12.11.5",
"mocha": "^7.1.1",
"rollup": "^2.6.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.27.0",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"mocha": {
"require": "ts-node/register",
"spec": "./test/*.ts"
},
"directories": {
"test": "test"
},
"dependencies": {
"@emmetio/scanner": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emmetio/css-matcher.git"
},
"bugs": {
"url": "https://github.com/emmetio/css-matcher/issues"
},
"homepage": "https://github.com/emmetio/css-matcher#readme"
}