-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.88 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
{
"name": "@modulor-js/html",
"version": "1.3.2",
"description": "Template engine based on tagged template literals",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest --color --rootDir ./",
"test:watch": "npm run test -- --watch --no-cache",
"test:platform": "npm run test -- -c .jest/platform-polyfill.config.js",
"test:build": "npm run test -- -c .jest/build.config.js",
"test:ssr": "npm run test -- -c .jest/ssr.config.js",
"build": "NODE_ENV=production rollup -c",
"build:watch": "npm run build -- --watch",
"benchmark": "npm run test -- -c .jest/benchmark.config.js --verbose",
"benchmark:watch": "npm run benchmark -- --watch",
"benchmark:browser": "parcel benchmark/browser_runner.html",
"sandbox": "parcel",
"examples": "modulor-storybook",
"examples:build": "build-storybook --output='./docs'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modulor-js/modulor-html.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/modulor-js/modulor-html/issues"
},
"homepage": "https://github.com/modulor-js/modulor-html#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-plugin-transform-node-env-inline": "^0.4.3",
"custom-elements-jest": "github:nogizhopaboroda/custom-elements",
"document-register-element": "^1.7.0",
"jest": "^24.4.0",
"jsdom": "^14.0.0",
"lighterhtml": "^0.9.2",
"lit-html": "^1.0.0",
"modulor-storybook": "github:modulor-js/modulor-storybook",
"parcel-bundler": "^1.12.3",
"rollup": "^1.6.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-uglify": "^6.0.2"
},
"storybook": {
"storybookDir": "examples",
"setupFile": "storybook-setup.js"
}
}