forked from Altinn/DesignSystem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.06 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.06 KB
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": "altinn-designsystem",
"description": "Designsystemet er bygget med Pattern Lab. Dette repoet inneholder kildekoden, Pattern Lab-konfigurasjon og Gulp-konfigurasjon for å kjøre koden lokalt, samt for å bygge distribusjonsfiler.",
"version": "0.2.0",
"scripts": {
"start": "gulp",
"patterns": "gulp patternlab:patternsonly",
"dist": "gulp dist",
"testplugin": "npm uninstall plugin-node-custom-output && npm install plugin-node-custom-output && npm run patterns",
"lint": "eslint source/ unit_test/",
"test": "mocha ./test/unit_test/mocha_runner.js -c --reporter spec",
"precommit-msg": "echo 'Pre-commit: Linting code and running mocha tests' && exit 0"
},
"pre-commit": [
"precommit-msg",
"lint",
"test"
],
"dependencies": {
"browser-sync": "2.17.5",
"gulp": "gulpjs/gulp#4.0",
"gulp-cli": "1.2.2",
"patternlab-node": "git+https://github.com/DavidEmanuelsen/patternlab-node.git",
"plugin-node-custom-output": "git+https://github.com/Altinn/plugin-node-custom-output.git",
"plugin-node-data-inheritance": "git+https://github.com/Altinn/plugin-node-data-inheritance.git",
"plugin-node-json-tab": "git+https://github.com/Altinn/plugin-node-json-tab.git"
},
"devDependencies": {
"anchor-js": "3.2.0",
"bootstrap": "4.0.0-alpha.4",
"bootstrap-datepicker": "",
"bootstrap-validator": "0.10.2",
"chai": "3.5.0",
"csvtojson": "",
"eslint": "3.9.1",
"eslint-config-airbnb-base": "9.0.0",
"eslint-plugin-import": "2.0.1",
"gulp-concat": "2.6.0",
"gulp-rename": "1.2.2",
"gulp-sass": "2.3.2",
"gulp-sourcemaps": "2.2.0",
"jquery": "2.1.4",
"minimist": "1.2.0",
"mocha": "3.1.2",
"pre-commit": "1.1.3",
"smoothstate": "0.7.2",
"tether": "1.3.2"
},
"keywords": [
"Pattern Lab",
"Atomic Web Design",
"Node",
"Gulp",
"Javascript"
],
"repository": {
"type": "git",
"url": "git://github.com/Altinn/DesignSystem.git"
},
"author": "Olavstoppen",
"license": "MIT",
"engines": {
"node": ">=5.0"
}
}