-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.02 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
{
"name": "@tgkr/styles",
"version": "0.4.0",
"description": "Togakure styles",
"scripts": {
"build": "yarn build:sass && yarn build:css && yarn build:js && yarn build:images",
"build:sass": "babel source/scss --out-dir lib/scss --copy-files --ignore 06-components,07-pages",
"build:css": "node-sass source/scss/07-pages -o lib/css/07-pages",
"build:js": "babel source --out-dir lib --ignore bin,images",
"build:images": "babel source/images --out-dir lib/images --copy-files",
"lint": "yarn lint:sass && yarn lint:js",
"lint:js": "eslint source/**",
"lint:sass": "sass-lint 'source/**/*.scss' --verbose --no-exit",
"release": "./node_modules/.bin/release-it --no-npm.publish --git.tagName='v${version}' --github.release",
"test": "jest --setupTestFrameworkScriptFile=./internals/test/setup.js --testRegex=/source/.*.test.js?$",
"test:tdd": "yarn test -- --watch",
"test:coverage": "yarn test -- --coverage --coverageDirectory=coverage"
},
"main": "lib/index.js",
"keywords": [
"togakure",
"styles"
],
"author": "Hemerson Vianna <hemerson.lourenco@gmail.com> (https://nerdcalistenico.com.br)",
"dependencies": {},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"babel-plugin-css-modules-transform": "1.6.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-register": "6.26.0",
"chai": "4.2.0",
"eslint": "6.4.0",
"husky": "3.0.5",
"jest": "24.9.0",
"jsdom": "15.1.1",
"node-sass": "4.13.1",
"release-it": "^12.4.1",
"sass-lint": "1.13.1"
},
"engines": {
"node": ">=6.10.3",
"npm": ">=3.10.10"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tgkr/styles.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tgkr/styles/issues"
},
"homepage": "https://github.com/tgkr/styles#readme",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}