-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
107 lines (107 loc) · 3.5 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@platform-coop-toolkit/pinecone",
"version": "1.0.0-beta.3",
"description": "Styleguide and pattern library for the Platform Cooperativism Consortium and the Platform Co-op Resource Library.",
"scripts": {
"assets:development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"assets:production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"build:assets": "npm run assets:production",
"build:modules": "rollup -c",
"build:components": "fractal build",
"build": "run-s clean:* build:*",
"clean:assets": "rimraf public",
"clean:modules": "rimraf dist",
"clean:components": "rimraf build",
"clean": "npm-run-all clean:*",
"lint:js": "eslint *.js src/assets/scripts",
"lint:styles": "stylelint src/assets/styles",
"lint": "npm-run-all lint:*",
"prepublishOnly": "npm run build:modules",
"release": "standard-version -t ''",
"test": "npm run lint",
"start": "concurrently \"npm run watch:assets\" \"npm run watch:components\" \"npm run watch:modules\"",
"watch:assets": "npm run assets:development -- --watch",
"watch:components": "fractal start --sync",
"watch:modules": "rollup -c --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/platform-coop-toolkit/pinecone.git"
},
"keywords": [
"styleguide",
"pattern-library"
],
"author": "OCAD University",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/platform-coop-toolkit/pinecone/issues"
},
"homepage": "https://github.com/platform-coop-toolkit/pinecone#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/assets/styles/**/*.scss": [
"stylelint"
],
"src/assets/scripts/**/*.js": [
"eslint"
]
},
"main": "dist/pinecone.cjs.js",
"module": "dist/pinecone.esm.js",
"browser": "public/scripts/pinecone.umd.js",
"sass": "src/assets/styles/pinecone.scss",
"files": [
"dist",
"src/assets/styles",
"src/assets/images",
"src/assets/fonts"
],
"engines": {
"node": ">=12.16.1"
},
"dependencies": {
"@popperjs/core": "^2.1.1",
"slugify": "^1.4.0",
"title": "^3.4.1",
"wicg-inert": "^3.0.2"
},
"devDependencies": {
"@10up/eslint-config": "^1.0.9",
"@babel/preset-env": "^7.8.7",
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@frctl/fractal": "^1.3.0",
"@frctl/nunjucks": "^2.0.2",
"babel-eslint": "^10.1.0",
"babel-preset-es2015-rollup": "^3.0.0",
"concurrently": "^5.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"faker": "^4.1.0",
"husky": "^4.2.3",
"laravel-mix": "^5.0.1",
"laravel-mix-copy-watched": "^2.2.2",
"lint-staged": "^10.0.8",
"npm-run-all": "^4.1.5",
"resolve-url-loader": "^3.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.0.6",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"sass": "^1.26.2",
"sass-loader": "^8.0.2",
"standard-version": "^8.0.0",
"stylelint": "^13.6.0",
"stylelint-config-wordpress": "^17.0.0",
"stylelint-declaration-use-variable": "^1.7.2",
"stylelint-order": "^4.0.0",
"vue-template-compiler": "^2.6.11"
}
}