forked from emmetio/emmet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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
{
"name": "emmet",
"version": "2.3.0",
"description": "Emmet — the essential toolkit for web-developers",
"main": "./dist/emmet.cjs.js",
"module": "./dist/emmet.es.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -wc",
"test": "mocha",
"lint": "tslint ./src/*.ts",
"clean": "rm -rf ./dist",
"prepare": "npm test && npm run lint && npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emmetio/emmet.git"
},
"keywords": [
"emmet",
"html",
"css",
"snippets",
"coding"
],
"author": "Sergey Chikuyonok <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/emmetio/emmet/issues"
},
"homepage": "https://github.com/emmetio/emmet#readme",
"dependencies": {
"@emmetio/abbreviation": "^2.2.0",
"@emmetio/css-abbreviation": "^2.1.2"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^12.0.8",
"lerna": "^3.20.2",
"mocha": "^7.1.1",
"rollup": "^2.6.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.27.0",
"ts-node": "^8.6.2",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"mocha": {
"require": "ts-node/register",
"spec": "./test/*.ts"
}
}