-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2 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
56
57
58
59
60
61
62
63
64
65
{
"name": "aftercss-package",
"version": "0.1.0",
"description": "aftercss",
"main": "index.js",
"scripts": {
"init": "npm install && lerna clean --yes && lerna bootstrap",
"cov": "nyc mocha ./packages/test/index.js ",
"dev": "lerna run dev --parallel",
"build": "lerna run build",
"lint": "npm run lint:prettier && npm run lint:ts",
"lint:fix": "npm run lint:prettier:fix && npm run lint:ts:fix",
"lint:ts": "lerna run lint:ts",
"lint:ts:fix": "lerna run lint:ts:fix",
"lint:prettier": "prettier --list-different './packages/{aftercss-parser,aftercss-shared,aftercss-tokenizer,after-test}/src/**/*.ts' '*.json'",
"lint:prettier:fix": "prettier --write './packages/{aftercss-parser,aftercss-shared,aftercss-tokenizer,after-test}/src/**/*.ts' '*.json' ",
"report": "nyc report --reporter=text-lcov > coverage.lcov && codecov --token=bca96c53-3d8c-41a2-b08d-ba18ec079372",
"test": "cd packages/test && npm run test",
"test:clean": "cd packages/test && npm run test:clean",
"clean:gz": "rm **/*.tgz"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/aftercss/after-css.git"
},
"keywords": [
"css"
],
"author": "zoolsher",
"license": "MIT",
"bugs": {
"url": "https://github.com/aftercss/after-css/issues"
},
"homepage": "https://github.com/aftercss/after-css#readme",
"devDependencies": {
"codecov": "^3.1.0",
"lerna": "^2.11.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"pre-commit": "^1.2.2",
"prettier": "1.14.2",
"rimraf": "^2.6.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3"
},
"pre-commit": [
"lint"
],
"config": {
"webstorm": {
"modules": [
"packages/after-test",
"packages/after-parser",
"packages/after-shared",
"packages/aftercss-tokenizer",
"packages/aftercss-yacc"
]
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}