forked from tjek/incito-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.09 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
{
"name": "incito-browser",
"version": "0.0.24",
"description": "",
"main": "dist/incito.js",
"watch": {
"build:js": {
"patterns": [
"lib/coffeescript"
],
"extensions": [
"coffee"
]
},
"build:css": {
"patterns": [
"lib/stylus"
],
"extensions": [
"styl"
]
}
},
"scripts": {
"test": "./node_modules/coffeelint/bin/coffeelint lib/coffeescript/ -r lib/coffeescript/ && jest",
"build:js": "browserify lib/coffeescript/incito.coffee -t coffeeify -t [ babelify --extensions .coffee --presets [ es2015 ] ] -p browserify-derequire -s Incito --extension=coffee -o dist/incito.js -d",
"build:css": "stylus lib/stylus/incito.styl -u nib -o dist/incito.css",
"build": "run-p -l build:js build:css",
"dev": "npm-watch",
"serve": "python -m SimpleHTTPServer 8001",
"prepublishOnly": "npm run build"
},
"jest": {
"moduleFileExtensions": [
"coffee",
"js",
"json"
],
"transform": {
"^.+\\.(coffee)$": "<rootDir>/jest-preprocessor.js"
},
"testMatch": [
"**/__tests__/*.(coffee|js)"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/shopgun/incito-browser.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/shopgun/incito-browser/issues"
},
"homepage": "https://github.com/shopgun/incito-browser#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.1.0",
"browserify-derequire": "^0.9.4",
"coffeeify": "^3.0.1",
"coffeelint": "^2.1.0",
"coffeescript": "^2.2.2",
"derequire": "^2.0.6",
"dompurify": "^1.0.3",
"intersection-observer": "^0.5.0",
"is-color": "^0.2.0",
"jest": "^22.4.2",
"jquery": "^3.3.1",
"json-schema-faker": "^0.5.0-rc13",
"jsonschema": "^1.2.2",
"lozad": "^1.3.0",
"microevent": "^1.0.0",
"nib": "^1.1.2",
"npm-run-all": "^4.1.2",
"npm-watch": "^0.3.0",
"stylus": "^0.54.5",
"valid-url": "^1.0.9"
}
}