-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
{
"name": "scss-symbols-parser",
"version": "2.0.1",
"description": "A very simple and fast SCSS Symbols parser",
"license": "MIT",
"repository": "mrmlnc/scss-symbols-parser",
"author": {
"name": "Denis Malinochkin",
"url": "canonium.com"
},
"engines": {
"node": ">=8.0.0"
},
"main": "out/index.js",
"typings": "out/index.d.ts",
"files": [
"out/index.d.ts",
"out/index.js",
"out/tokenizer.js",
"out/tokenizer.d.ts"
],
"keywords": [
"scss",
"parser",
"symbols",
"variables",
"mixins",
"imports"
],
"devDependencies": {
"bootstrap": "^4.3.1",
"mocha": "^3.4.2",
"rimraf": "^2.6.1",
"tslint": "^5.4.3",
"tslint-config-xo": "^1.2.0",
"typescript": "^3.7.2"
},
"scripts": {
"clean": "rimraf out",
"lint": "tslint \"src/**/*.ts\" -p . -t stylish",
"compile": "tsc",
"test": "mocha \"out/**/*.spec.js\" -s 0",
"build": "npm run clean && npm run lint && npm run compile && npm test",
"watch": "npm run clean && npm run lint && npm run compile -- --watch"
}
}