-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.84 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
{
"name": "lo-tech",
"version": "0.1.0",
"description": "Low technology web components library",
"main": "index.js",
"scripts": {
"prepublish": "npm run clean && npm run check & npm run build",
"build": "npm run build:lotech && npm run build:fragments && npm run build:example",
"build:lotech": "rollup -c rollup.config.js",
"build:fragments": "rollup -c fragments.rollup.config.js",
"build:example": "rollup -c example.rollup.config.js && lessc src/example/raw/index.less results/example/raw/style.css && cp src/example/index.html results/example/raw && lessc src/example/templates/index.less results/example/templates/style.css && cp src/example/index.html results/example/templates",
"lint": "eslint src test",
"test": "npm run test:lotech && npm run test:fragments",
"test:lotech": "karma start",
"test:fragments": "rollup -c fragments.test.rollup.config.js && mocha --require chai/register-assert results/fragments.test.js",
"check": "npm test",
"clean": "rm -rf results/ && rm -rf bin/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/c8y3/lo-tech.git"
},
"keywords": [
"javascript",
"module",
"component",
"ihm",
"desktop"
],
"author": "Charles Hymans",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/c8y3/lo-tech/issues"
},
"homepage": "https://github.com/c8y3/lo-tech#readme",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.18.2",
"htmlparser2": "^3.9.2",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^5.1.1",
"less": "^3.0.1",
"mocha": "^5.0.1",
"rollup": "^0.56.3",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-multi-entry": "^2.0.2",
"rollup-plugin-root-import": "^0.2.2"
}
}