-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
{
"name": "@asmcss/assembler",
"version": "0.8.3",
"main": "dist/assembler.cjs.js",
"module": "dist/assembler.es.js",
"browser": "dist/assembler.js",
"dependencies": {},
"scripts": {
"build": "rollup -c --environment BUILD:production && tsc",
"dev": "rollup -c -w",
"test": "jest"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.1.0",
"jest": "^26.6.3",
"rollup": "^2.36.1",
"rollup-plugin-import-resolver": "^1.0.5",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"description": "Modern utility-first framework",
"repository": {
"type": "git",
"url": "git+https://github.com/asmcss/assembler.git"
},
"types": "types/index.d.ts",
"files": [
"dist/*",
"types/*"
],
"author": "Zindex Software",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/asmcss/assembler/issues"
},
"homepage": "https://asmcss.com",
"jest": {
"setupFiles": [
"./tests/mocks/mock.js"
],
"modulePathIgnorePatterns": [
"mocks"
]
}
}