-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "@emmetio/action-utils",
"version": "1.2.2",
"description": "Utilities for Emmet actions",
"main": "./dist/action-utils.cjs.js",
"module": "./dist/action-utils.es.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "mocha",
"lint": "tslint ./src/*.ts",
"build": "rollup -c",
"watch": "rollup -wc",
"clean": "rm -rf ./dist",
"prepare": "npm run lint && npm test && npm run clean && npm run build"
},
"keywords": [
"emmet"
],
"author": "Sergey Chikuyonok <serge.che@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^12.12.47",
"mocha": "^7.2.0",
"rollup": "^2.18.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.5"
},
"dependencies": {
"@emmetio/css-matcher": "^1.0.2",
"@emmetio/html-matcher": "^1.3.0",
"emmet": "^2.1.1"
},
"mocha": {
"require": "ts-node/register",
"spec": "./test/*.ts"
}
}